A minimalistic programming language written in C89.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
725 B

  1. # `ink`
  2. `ink` is a minimalistic interpreted programming language, tentatively implemented exclusively in C98. It features
  3. coroutines and can currently only manipulate integers. Part of the code may not be compliant with C98 and I will try to
  4. fix that in time.
  5. It is fully self-contained and doesn't rely on a working standard library beyond the following:
  6. - `malloc`
  7. - `realloc`
  8. - `free`
  9. - `putchar`
  10. To make the library not use the standard library, build it with `NOSTDLIB` defined as a preprocessor directive.
  11. All of these functions need to work for `ink` to work. It is easy to add new functions to the interpreter. In the
  12. future, I will add a garbage collector to handle cleaning dynamically allocated resources.