nomsu/tools/repl.nom

62 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-12-14 20:21:03 -08:00
#!/usr/bin/env nomsu -V5.12.12.8
2018-11-11 18:14:52 -08:00
#
This file defines a Read-Evaluate-Print-Loop (REPL) for Nomsu
2018-11-19 17:37:37 -08:00
use "lib/consolecolor.nom"
use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
externally [quit, exit] all mean: lua> "os.exit(0)"
externally (help) means:
2018-12-14 20:21:03 -08:00
say "
This is the Nomsu v\(Nomsu version) interactive console.
You can type in Nomsu code here and hit 'enter' twice to run it.
To exit, type 'exit' or 'quit' and hit enter twice."
2018-12-14 20:21:03 -08:00
say "
\(bright)\(underscore)Welcome to the Nomsu v\(Nomsu version) interactive console!\(reset color)
press 'enter' twice to run a command
"
repeat:
say (bright (yellow ">> ")) inline
2018-12-14 20:21:03 -08:00
$buff = []
repeat:
say (bright) inline
2018-12-14 20:21:03 -08:00
$line = ($io.read "*L")
say (reset color) inline
2018-12-14 20:21:03 -08:00
if (($line == "\n") or (not $line)):
if ((size of $buff) > 0):
# clear the line
say "\027[1A\027[2K" inline
go to (run buffer)
2018-12-14 20:21:03 -08:00
$buff|add ($line|with "\t" -> " ")
say (dim (yellow ".. ")) inline
--- (run buffer) ---
2018-12-14 20:21:03 -08:00
if ((size of $buff) == 0): stop
$buff = ($buff|joined)
# TODO: support local variables
2018-12-14 20:21:03 -08:00
spoof file $buff
try:
2018-12-14 20:21:03 -08:00
$ret = (run $buff)
..and if it barfs $err: say $err
..or if it succeeds:
2018-12-14 20:21:03 -08:00
if (type of $ret) is:
"nil":
do nothing
"boolean":
2018-12-14 20:21:03 -08:00
say "= \("yes" if $ret else "no")"
"table":
2018-12-14 20:21:03 -08:00
if $ret.as_nomsu:
say "= \($ret|as nomsu)"
..else:
2018-12-14 20:21:03 -08:00
say "= \$ret"
else:
2018-12-14 20:21:03 -08:00
say "= \$ret"