roswell installable version of hellerve/sbcli
ros install roswell/sbcli
You should be able to launch sbcli
by just typing ros repl
. Once you’re in the
REPL, you can edit normally with readline capabilities. Hitting tab will
autocomplete (note that if there is more than one possibility, you’ll have to
hit tab twice).
Typing :help
will give you an overview over all the available special cases
and give you an overview over what you’ve defined.
Typing :h symbol
will enter inspection mode for a symbol. Typing CTRL-D
exits inspection mode.
Typing :q
, CTRL-D
, or CTRL-C
will exit the REPL.
Typing :r
resets the environment.
Typing :d symbol
dumps the disassembly of a symbol.
Typing :s filename
will save all of the expressions that were typed and
evaluated to the file specified, in the format:
(+ 1 2) ; => 3
(* 6 10) ; => 60
Of course, depending on your result, this can result in very long lines, or break if your result contains newlines. Use at your own peril for now!
TBD
Have fun!