Ludovic 'Archivist' Lagouardette b97b33c471 | před 5 měsíci | |
---|---|---|
.idea | před 5 měsíci | |
test | před 5 měsíci | |
.gitignore | před 6 měsíci | |
CMakeLists.txt | před 6 měsíci | |
LICENSE | před 6 měsíci | |
README.md | před 6 měsíci | |
bench.c | před 6 měsíci | |
ink.h | před 5 měsíci | |
lib.c | před 5 měsíci | |
main.c | před 5 měsíci |
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.