A minimalistic programming language written in C89.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
Ludovic 'Archivist' Lagouardette f6bc42b934 Merge branch 'main' of https://git.nekoit.xyz/Archivist/ink hace 4 meses
.idea added type support hace 4 meses
test Added coroutine handling hace 4 meses
.gitignore Initial commit hace 4 meses
CMakeLists.txt Added README.md contents hace 4 meses
LICENSE Added README.md contents hace 4 meses
README.md Added README.md contents hace 4 meses
bench.c Added coroutine handling hace 4 meses
ink.h Merge branch 'main' of https://git.nekoit.xyz/Archivist/ink hace 4 meses
lib.c Merge branch 'main' of https://git.nekoit.xyz/Archivist/ink hace 4 meses
main.c Added coroutine handling hace 4 meses

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.