roc/examples/cli/false-interpreter
Agus Zubiaga 8dedd9f03c
New app header syntax
Implements the new app header syntax as discussed in Zulip [1].

    app [main] {
	cli: platform "../platform/main.roc",
	json: "../json/main.roc"
    }

Old headers still parse and are automatically upgraded to the new
syntax by the formatter.

[1] 418444862
2024-05-01 10:49:01 -03:00
..
examples Categorize FALSE interpreter as a CLI 2022-09-11 22:32:15 -06:00
platform New module header 2024-05-01 10:39:12 -03:00
Context.roc New module header 2024-05-01 10:39:12 -03:00
False.roc New app header syntax 2024-05-01 10:49:01 -03:00
README.md Categorize FALSE interpreter as a CLI 2022-09-11 22:32:15 -06:00
Variable.roc New module header 2024-05-01 10:39:12 -03:00

False Interpreter

This is an interpreter for the false programming language. It is currently functional but runs in a way that devours stack space. There are many examples of applications in the examples sub folder. Many of them will currently cause stack overflows if stack size is not increased with something like ulimit -s unlimited.