The Nomsu programming language. https://nomsu.org
Go to file
2017-09-12 21:50:04 -07:00
examples Added readme and moved examples into a directory. 2017-09-12 21:48:35 -07:00
core.nom Added in the tests. 2017-09-12 21:37:58 -07:00
nomic.lua Added moonc compiled versions of files. 2017-09-12 21:38:54 -07:00
nomic.moon Improvements to error messaging. 2017-09-12 21:10:22 -07:00
README.md Added info about core.nom. 2017-09-12 21:50:04 -07:00
utils.lua Added moonc compiled versions of files. 2017-09-12 21:38:54 -07:00
utils.moon Tweaks and fixes. 2017-09-12 17:42:35 -07:00

This is a programming language designed to be used for playing games of Nomic, or engaging in other similar activities revolving around natural language rule-making and self modification.

The language compiler was written in moonscript, using the lpeg library for parsing. All of the moon files have been compiled into lua for convenience.

In order to run a .nom file, run lua nomic.lua your_file.nom. Code can also be compiled into lua code directly, which still requires nomic.lua as a dependency, but bypasses the compilation phase when it runs. To compile, run lua nomic.lua your_file.nom output_file.lua which produces an output file which can be run with the command lua output_file.lua.

Example code can be found in the examples folder.

core.nom contains some extremely helpful and basic core functionality for the language, written in the language itself, so I recommend adding run file "core.nom" to the top of your files.