The Nomsu programming language. https://nomsu.org
Go to file
2018-06-20 15:23:10 -07:00
core Cleanups. 2018-06-20 15:22:06 -07:00
examples Cleaning up examples. 2018-06-20 15:23:10 -07:00
lib Initial working version. 2018-06-18 15:44:35 -07:00
tests Added test for multiple labels. 2018-06-18 18:41:00 -07:00
.gitignore Updated gitignore. 2018-02-02 15:59:05 -08:00
code_obj.lua Lots of cleanup. 2018-06-19 00:44:22 -07:00
code_obj.moon Lots of cleanup. 2018-06-19 00:44:22 -07:00
compile_lib.sh Cleaned up/improved the command line interface, and fixed the 2018-06-15 03:11:56 -07:00
consolecolors.lua Improved documentation and compile script. 2017-12-18 16:45:46 -08:00
error_handling.lua Cleanups. 2018-06-20 15:22:06 -07:00
error_handling.moon Cleanups. 2018-06-20 15:22:06 -07:00
LICENSE Added license. 2017-10-09 04:09:06 -07:00
nomsu_compiler.lua Cleanups. 2018-06-20 15:22:06 -07:00
nomsu_compiler.moon Cleanups. 2018-06-20 15:22:06 -07:00
nomsu_tree.lua More streamlining and cleanup. 2018-06-18 18:11:09 -07:00
nomsu_tree.moon More streamlining and cleanup. 2018-06-18 18:11:09 -07:00
nomsu.lua Tidying up error handling and REPL. 2018-06-19 15:24:39 -07:00
nomsu.moon Tidying up error handling and REPL. 2018-06-19 15:24:39 -07:00
nomsu.peg Initial working version. 2018-06-18 15:44:35 -07:00
parser.lua Fixing up some error reporting 2018-06-19 02:00:59 -07:00
parser.moon Fixing up some error reporting 2018-06-19 02:00:59 -07:00
README.md Cleaned up/improved the command line interface, and fixed the 2018-06-15 03:11:56 -07:00
utils.lua Added list/dict metatables to make comparison and string representations 2018-06-06 13:25:34 -07:00
uuid.lua Initial working version. 2018-06-18 15:44:35 -07:00

Nomsu

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.

Dependencies

Nomsu's only dependencies are Lua 5.2 or later (tested with version 5.2.4) (or Luajit (tested with version 2.1.0)) and LPEG (luarocks install lpeg). Nomsu's compiler was written in Moonscript, but all of the .moon files have been compiled into lua for convenience, so Moonscript is not a dependency.

Usage

  • To get a nomsu REPL, simply run lua nomsu.lua.
  • To run a .nom file with nomsu code, run lua nomsu.lua your_file.nom.
  • (Advanced/optional) To precompile a .nom file into lua, run lua nomsu.lua -c <input_file> to precompile your file into lua (by default, saved in the same location, but with a .lua extension instead of .nom). 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.
  • More usage options are avilable via lua nomsu.lua --help.

Layout

  • nomsu.moon/nomsu.lua - The nomsu compiler. The compiler is written in Moonscript, but a lua version of the file is provided in this repository for convenience.
  • 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.
  • consolecolors.lua - Lua module that defines ANSI color codes for colored console output (used internally in nomsu.moon).
  • 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.
  • 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.

Extra

There is a vim plugin for the language available in the Vim Nomsu repository. It is usually kept relatively up-to-date with Nomsu, but occasionally lags behind.