A minimalistic programming language written in C89.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Ludovic 'Archivist' Lagouardette d5f09d826f Segregated inner and outer allocations 4 månader sedan
test Added coroutine handling 4 månader sedan
.gitignore Initial commit 4 månader sedan
CMakeLists.txt Added README.md contents 4 månader sedan
LICENSE Added README.md contents 4 månader sedan
README.md Added README.md contents 4 månader sedan
bench.c Added coroutine handling 4 månader sedan
ink.h Segregated inner and outer allocations 4 månader sedan
lib.c Segregated inner and outer allocations 4 månader sedan
main.c Added coroutine handling 4 månader sedan

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.