A minimalistic programming language written in C89.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Ludovic 'Archivist' Lagouardette 4ab6745bb5 Added documentation vor 4 Monaten
test Added coroutine handling vor 4 Monaten
.gitignore Initial commit vor 4 Monaten
CMakeLists.txt Added README.md contents vor 4 Monaten
LICENSE Added README.md contents vor 4 Monaten
README.md Added README.md contents vor 4 Monaten
bench.c Added coroutine handling vor 4 Monaten
ink.h Added documentation vor 4 Monaten
lib.c Added documentation vor 4 Monaten
main.c Added coroutine handling vor 4 Monaten

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.