A minimalistic programming language written in C89.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Ludovic 'Archivist' Lagouardette d5f09d826f Segregated inner and outer allocations há 1 ano
test Added coroutine handling há 1 ano
.gitignore Initial commit há 1 ano
CMakeLists.txt Added README.md contents há 1 ano
LICENSE Added README.md contents há 1 ano
README.md Added README.md contents há 1 ano
bench.c Added coroutine handling há 1 ano
ink.h Segregated inner and outer allocations há 1 ano
lib.c Segregated inner and outer allocations há 1 ano
main.c Added coroutine handling há 1 ano

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.