Hi. This is terminal with your unique ol (Otus Lisp) remote session, if successfully conneted and started, sure.
Type ,help to help, ,quit to end session.
This session works in restricted mode (aka sandbox).
Any try to execute any system call (like stat, open file, close file, etc.), ',load' command, '(clock)' function
will close the session!
For safety reasons, sure and sorry.
But you can execute any lisp scripts! For example let's try:
(fold * 1 (lrange 1 1 100))
or
(let f ((n 273)) ; factorial
(if (= n 1)
1
(* n (f (- n 1)))))