A minimalistic programming language written in C89.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ludovic 'Archivist' Lagouardette 0706677e2f Added README.md contents il y a 4 mois
test Added coroutine handling il y a 4 mois
.gitignore Initial commit il y a 4 mois
CMakeLists.txt Added README.md contents il y a 4 mois
LICENSE Added README.md contents il y a 4 mois
README.md Added README.md contents il y a 4 mois
bench.c Added coroutine handling il y a 4 mois
ink.h Added README.md contents il y a 4 mois
lib.c Added README.md contents il y a 4 mois
main.c Added coroutine handling il y a 4 mois

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.