A minimalistic programming language written in C89.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Ludovic 'Archivist' Lagouardette b97b33c471 Garbage collector and arrays work! 5 mesi fa
.idea added type support 5 mesi fa
test Garbage collector and arrays work! 5 mesi fa
.gitignore Initial commit 6 mesi fa
CMakeLists.txt Added README.md contents 6 mesi fa
LICENSE Added README.md contents 6 mesi fa
README.md Added README.md contents 6 mesi fa
bench.c Added coroutine handling 6 mesi fa
ink.h Added garbage collection (and a memory corruption bug) 5 mesi fa
lib.c Garbage collector and arrays work! 5 mesi fa
main.c Added garbage collection (and a memory corruption bug) 5 mesi fa

README.md

ink

ink is a minimalistic interpreted programming language, tentatively implemented exclusively in C98. It features coroutines and can currently only manipulate integers. Part of the code may not be compliant with C98 and I will try to fix that in time.

It is fully self-contained and doesn't rely on a working standard library beyond the following:

  • malloc
  • realloc
  • free
  • putchar

To make the library not use the standard library, build it with NOSTDLIB defined as a preprocessor directive.

All of these functions need to work for ink to work. It is easy to add new functions to the interpreter. In the future, I will add a garbage collector to handle cleaning dynamically allocated resources.