2018-06-24 18:20:11 -07:00
|
|
|
.\" Manpage for nomsu.
|
|
|
|
.\" Contact bruce@bruce-hill.com to correct errors or typos.
|
2018-07-09 16:58:46 -07:00
|
|
|
.TH man 8 "9 July 2018" "1.1" "nomsu man page"
|
2018-06-24 18:20:11 -07:00
|
|
|
.SH NAME
|
|
|
|
nomsu \- run a Nomsu program
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B nomsu
|
|
|
|
[
|
|
|
|
.I options
|
|
|
|
]
|
|
|
|
[
|
2018-07-09 16:58:46 -07:00
|
|
|
.I nomsu_file
|
2018-11-26 16:16:08 -08:00
|
|
|
|
|
|
|
|
.I -t tool
|
|
|
|
|
|
|
|
|
.I -e nomsu_code
|
|
|
|
|
|
|
|
|
.I -m nomsu_files...
|
|
|
|
[--]
|
|
|
|
]
|
2018-07-09 16:58:46 -07:00
|
|
|
[
|
2018-06-24 18:20:11 -07:00
|
|
|
.I args
|
|
|
|
]
|
|
|
|
.SH DESCRIPTION
|
2018-07-09 16:58:46 -07:00
|
|
|
\fBnomsu\fR is the compiler/interpreter for the Nomsu programming language.
|
|
|
|
.SH INPUT
|
|
|
|
.TP
|
|
|
|
If an input file is provided, \fBnomsu\fR will run that file.
|
|
|
|
.TP
|
|
|
|
If "-" is used, \fBnomsu\fR will read from standard input
|
|
|
|
.TP
|
|
|
|
If no input files are provided, \fBnomsu\fR will run in interactive mode.
|
2018-06-24 18:20:11 -07:00
|
|
|
.SH OPTIONS
|
|
|
|
.TP
|
2018-11-26 16:16:08 -08:00
|
|
|
.BI \-t " tool"
|
|
|
|
Run the specified Nomsu tool (one of the tools/*.nom files provided with the compiler).
|
|
|
|
.TP
|
|
|
|
.BI \-m " file1 file2... " [--]
|
|
|
|
Run multiple files. If a "--" is supplied, any additional arguments will be treated as arguments for the files, rather than additional files.
|
|
|
|
.TP
|
|
|
|
.BI \-e " code"
|
|
|
|
Execute the given nomsu code string.
|
|
|
|
.TP
|
2018-06-24 18:20:11 -07:00
|
|
|
.BI \-V " version"
|
2018-07-09 16:58:46 -07:00
|
|
|
Specify the desired Nomsu version (defaults to the latest installed version). E.g. \fBnomsu -V 1.2\fR or \fBnomsu -V 1.2.5.9\fR
|
2018-06-24 18:20:11 -07:00
|
|
|
.TP
|
2018-07-18 01:42:12 -07:00
|
|
|
.BI \-L
|
|
|
|
List the installed versions of Nomsu (if \fB-V\fR is supplied, only print versions that match the requested pattern).
|
|
|
|
.TP
|
2018-11-26 16:16:08 -08:00
|
|
|
.BI \-O " optimization"
|
2018-07-24 15:25:03 -07:00
|
|
|
Run the compiler with the given optimization level (default: 1). If \fBlevel\fR is >0, use precompiled .lua versions of .nom files, when available.
|
2018-06-24 18:20:11 -07:00
|
|
|
.TP
|
|
|
|
.B \-v
|
|
|
|
Verbose: print compiled lua code as it's generated for the input files.
|
|
|
|
.TP
|
|
|
|
.B \-c
|
2018-07-09 16:58:46 -07:00
|
|
|
Compile the input files into .lua files.
|
2018-06-24 18:20:11 -07:00
|
|
|
.TP
|
2018-11-26 16:16:08 -08:00
|
|
|
.B \-s
|
2018-07-09 16:58:46 -07:00
|
|
|
Check the input files for syntax errors without running them.
|
2018-06-24 18:20:11 -07:00
|
|
|
.TP
|
2018-11-26 16:16:08 -08:00
|
|
|
.BI \-d " debugger"
|
2018-07-10 15:06:02 -07:00
|
|
|
If provided, \fBnomsu\fR will attempt to use the specified debugger to wrap the main body of execution.
|
|
|
|
.TP
|
2018-06-24 18:20:11 -07:00
|
|
|
.B \--version
|
|
|
|
Print the version number and exit.
|
|
|
|
.TP
|
2018-07-23 14:55:01 -07:00
|
|
|
.B \--no-core
|
2018-11-26 16:16:08 -08:00
|
|
|
Run \fBnomsu\fR without running the files in the 'core' directory (this will disable most functionality).
|
2018-07-23 14:55:01 -07:00
|
|
|
.TP
|
2018-06-24 18:20:11 -07:00
|
|
|
.B \--help
|
|
|
|
Print the command line usage.
|
|
|
|
.SH EXAMPLES
|
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
nomsu
|
|
|
|
Runs nomsu in interactive mode (a read-evaluate-print loop)
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
nomsu my_file.nom
|
|
|
|
Runs the Nomsu file 'my_file.nom'
|
|
|
|
|
2018-11-26 16:16:08 -08:00
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
nomsu -t autoformat -i my_file.nom
|
|
|
|
Runs the tools/autoformat.nom script with arguments "-i my_file.nom", which will automatically format my_file.nom in-place.
|
|
|
|
|
2018-06-24 18:20:11 -07:00
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
nomsu -c my_file.nom
|
|
|
|
Compiles the Nomsu file 'my_file.nom' into a Lua file called 'my_file.lua'
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B
|
2018-11-26 16:16:08 -08:00
|
|
|
nomsu -m one.nom two.nom three.nom
|
2018-07-09 16:58:46 -07:00
|
|
|
Runs 'one.nom', then 'two.nom', then 'three.nom'.
|
2018-06-24 18:20:11 -07:00
|
|
|
|
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
nomsu -V 2.3 my_file.nom
|
|
|
|
Runs my_file.nom using the latest installed version of Nomsu whose version matches 2.3.*
|
|
|
|
|
|
|
|
.SH AUTHOR
|
|
|
|
Bruce Hill (bruce@bruce-hill.com)
|