2018-12-31 00:20:07 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.13.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
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
use "lib/consolecolor.nom"
|
|
|
|
use "lib/os.nom"
|
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-11-11 16:26:38 -08:00
|
|
|
externally [quit, exit] all mean: lua> "os.exit(0)"
|
2018-11-11 15:50:46 -08:00
|
|
|
externally (help) means:
|
2018-12-30 19:04:34 -08:00
|
|
|
say ("
|
2018-12-14 20:21:03 -08:00
|
|
|
This is the Nomsu v\(Nomsu version) interactive console.
|
2018-11-08 15:23:22 -08:00
|
|
|
You can type in Nomsu code here and hit 'enter' twice to run it.
|
2018-12-30 19:04:34 -08:00
|
|
|
To exit, type 'exit' or 'quit' and hit enter twice.
|
|
|
|
")
|
2018-11-08 15:23:22 -08:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
say ("
|
2018-12-14 20:21:03 -08:00
|
|
|
|
2018-12-30 23:58:47 -08:00
|
|
|
\(bright)\(underscore)Welcome to the Nomsu v\(Nomsu version) interactive console!\
|
|
|
|
..\(reset color)
|
2018-11-11 15:50:46 -08:00
|
|
|
press 'enter' twice to run a command
|
2018-12-30 19:04:34 -08:00
|
|
|
|
|
|
|
")
|
2018-11-08 15:23:22 -08:00
|
|
|
|
|
|
|
repeat:
|
2018-11-11 19:01:15 -08:00
|
|
|
say (bright (yellow ">> ")) inline
|
2018-12-14 20:21:03 -08:00
|
|
|
$buff = []
|
2018-11-08 15:23:22 -08:00
|
|
|
repeat:
|
2018-11-11 19:01:15 -08:00
|
|
|
say (bright) inline
|
2018-12-14 20:21:03 -08:00
|
|
|
$line = ($io.read "*L")
|
2018-11-11 19:01:15 -08:00
|
|
|
say (reset color) inline
|
2018-12-14 20:21:03 -08:00
|
|
|
if (($line == "\n") or (not $line)):
|
|
|
|
if ((size of $buff) > 0):
|
2018-11-11 19:01:15 -08:00
|
|
|
# clear the line
|
|
|
|
say "\027[1A\027[2K" inline
|
2018-11-08 15:23:22 -08:00
|
|
|
go to (run buffer)
|
2018-12-30 19:04:34 -08:00
|
|
|
$buff, add ($line, with "\t" -> " ")
|
2018-11-11 19:01:15 -08:00
|
|
|
say (dim (yellow ".. ")) inline
|
2018-12-30 19:04:34 -08:00
|
|
|
|
2018-11-19 17:44:46 -08:00
|
|
|
--- (run buffer) ---
|
2018-12-30 19:04:34 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
if ((size of $buff) == 0): stop
|
2018-12-30 19:04:34 -08:00
|
|
|
$buff = ($buff, joined)
|
2018-12-14 20:21:03 -08:00
|
|
|
spoof file $buff
|
2018-11-08 15:23:22 -08:00
|
|
|
try:
|
2019-01-01 15:05:58 -08:00
|
|
|
$tree = ($buff parsed)
|
|
|
|
..and if it barfs $err:
|
|
|
|
say $err
|
|
|
|
do next
|
|
|
|
|
|
|
|
unless $tree:
|
|
|
|
do next
|
|
|
|
|
|
|
|
for $chunk in $tree:
|
|
|
|
try:
|
|
|
|
$lua = ($chunk as lua)
|
|
|
|
..and if it barfs $err: say $err
|
|
|
|
|
|
|
|
unless $lua:
|
|
|
|
do next
|
|
|
|
|
|
|
|
# TODO: this is a bit hacky, it just defaults variables to global
|
|
|
|
so that stuff mostly works across multiple lines. It would be
|
|
|
|
nicer if local variables actually worked.
|
|
|
|
$lua, remove free vars
|
|
|
|
try:
|
|
|
|
$ret = (run $lua)
|
|
|
|
..and if it barfs $err: say $err
|
|
|
|
..or if it succeeds:
|
|
|
|
if (type of $ret) is:
|
|
|
|
"nil":
|
|
|
|
do nothing
|
|
|
|
|
|
|
|
"boolean":
|
|
|
|
say "= \("yes" if $ret else "no")"
|
|
|
|
|
|
|
|
"table":
|
|
|
|
if $ret.as_nomsu:
|
|
|
|
say "= \($ret, as nomsu)"
|
|
|
|
..else:
|
|
|
|
say "= \$ret"
|
|
|
|
|
|
|
|
else:
|
2018-12-14 20:21:03 -08:00
|
|
|
say "= \$ret"
|