nomsu/README.md

22 lines
1.3 KiB
Markdown
Raw Normal View History

2017-09-12 22:30:41 -07:00
Nomsu (named after **Nom**ic, and its creator, Peter **Su**ber) is a programming language
2017-09-12 21:59:46 -07:00
designed to be used for playing games of Nomic, or engaging in other similar activities
revolving around natural language rule-making and self modification.
2017-09-12 21:52:03 -07:00
The language compiler was written in [Moonscript](http://moonscript.org/), using the
[LPEG library](http://www.inf.puc-rio.br/~roberto/lpeg/) 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.
2017-09-12 22:30:41 -07:00
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.
2017-09-12 21:50:04 -07:00
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
2017-09-12 21:50:04 -07:00
your files.
2017-09-12 23:06:55 -07:00
There is a vim plugin for the language available in the [Vim Nomsu repository](https://bitbucket.org/squidarms/vim-nomsu/src).