The Nomsu programming language. https://nomsu.org
Go to file
2017-10-09 04:09:06 -07:00
examples Added "unless" to core. 2017-10-07 16:38:13 -07:00
lib Added random seed. 2017-10-08 18:29:59 -07:00
.gitignore Updated command line interface and compilation. 2017-10-08 18:23:48 -07:00
compile_lib.sh Updated command line interface and compilation. 2017-10-08 18:23:48 -07:00
consolecolors.lua Renamed ansicolors to avoid namespace collision. 2017-10-07 16:23:21 -07:00
LICENSE Added license. 2017-10-09 04:09:06 -07:00
nomsu.lua Added chain for loaded files. 2017-10-09 03:51:53 -07:00
nomsu.moon Added chain for loaded files. 2017-10-09 03:51:53 -07:00
README.md Everything fixed up and some reduced lua codespew too! 2017-09-21 02:33:04 -07:00
utils.lua Making forward progress. 2017-09-26 15:27:01 -07:00
utils.moon lib/metaprogramming.nom is working! 2017-09-25 17:02:00 -07:00

Nomsu (named after Nomic, and its creator, Peter Suber) 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. LPEG is a dependency, so you need to install it in order to run the compiler. All of the moon files have been compiled into lua for convenience, so Moonscript is not a dependency.

In order to run a .nom file, run lua nomsu.lua your_file.nom. Code can also be compiled into lua code directly, which still requires nomsu.lua as a dependency, but bypasses the compilation phase when it runs. To compile, run lua nomsu.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.

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

There is a vim plugin for the language available in the Vim Nomsu repository.