nomsu/README.md

34 lines
2.9 KiB
Markdown
Raw Normal View History

2017-10-09 04:32:04 -07:00
# Nomsu
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-10-09 04:32:04 -07:00
## Dependencies
Nomsu's only dependencies are [Lua 5.2 or later](https://www.lua.org/) (tested with version 5.2.4) (or [Luajit](http://luajit.org/) (tested with version 2.1.0)) and [LPEG](http://www.inf.puc-rio.br/~roberto/lpeg/) (`luarocks install lpeg`). Nomsu's compiler was written in [Moonscript](http://moonscript.org/), but all of the .moon files have been compiled into lua for convenience, so Moonscript is not a dependency.
2017-10-09 05:12:18 -07:00
## Usage
2017-10-09 04:32:04 -07:00
2017-10-09 05:12:18 -07:00
* To get a nomsu [REPL](https://en.wikipedia.org/wiki/Read-eval-print_loop), simply run `lua nomsu.lua`.
* To run a .nom file with nomsu code, run `lua nomsu.lua your_file.nom`. Or `lua nomsu.lua -` if reading from stdin.
2018-06-05 03:39:44 -07:00
* (Advanced/optional) To precompile a .nom file into lua, run `lua nomsu.lua -o <output_filename> <input_file>` to precompile your file into lua (by default, saved at `<your_file>.lua`). If you run the compiler with the "-O" (for Optimized) flag, the compiler will run the precompiled lua files directly, instead of parsing and compiling the .nom files before running them. This is not necessary, but it can speed things up if you precompile a bunch of code that involves macros or compile-time activity.
2017-10-09 05:12:18 -07:00
* More usage options are avilable via `lua nomsu.lua --help`.
2017-10-09 04:32:04 -07:00
## Layout
2017-10-09 05:24:17 -07:00
* `nomsu.moon`/`nomsu.lua` - **The nomsu compiler**. The compiler is written in [Moonscript](http://moonscript.org/), but a lua version of the file is provided in this repository for convenience.
2018-06-05 03:39:44 -07:00
* `nomsu_tree.moon`/`nomsu_tree.lua` - Datastructures used for Nomsu ASTs.
* `code_obj.moon`/`code_obj.lua` - Datastructures used for incrementally building generated code, while preserving code origins.
* `utils.lua` - A set of utility actions used by nomsu.moon.
2017-10-09 04:32:04 -07:00
* `consolecolors.lua` - Lua module that defines ANSI color codes for colored console output (used internally in nomsu.moon).
2017-10-09 05:24:17 -07:00
* `examples/how_do_i.nom` - A simple walkthrough of some of the features of nomsu, written in nomsu. **This is a good place to start.**
2018-06-15 00:31:24 -07:00
* `core/*.nom` - Core language definitions of stuff like control flow, operators, and metaprogramming, broken down into different files.
* `lib/*.nom` - Optional language libraries for stuff you might want, like interfacing with the OS, or doing Object Oriented Programming.
* `tests/*.nom` - A somewhat exhaustive set of minimalist tests for almost every language feature defined in `core/*.nom` and `lib/*.nom`
* `compile_lib.sh` - script to precompile `core/*.nom` and `lib/*.nom` so they can be loaded faster. This is optional.
2017-09-12 21:50:04 -07:00
2017-10-09 04:32:04 -07:00
## Extra
2017-09-12 23:06:55 -07:00
2018-01-27 16:40:36 -08:00
There is a vim plugin for the language available in the [Vim Nomsu repository](https://bitbucket.org/squidarms/vim-nomsu/src). It is usually kept relatively up-to-date with Nomsu, but occasionally lags behind.