"OX is an interpreter program for AL (Animation Language) in the pegasys system. It's an extension to a small Scheme interpreter called Siod."
abulafia:mlewis> ox Welcome to OX, version 2.22 Beta [8/26/94] ox -->At the command-line prompt, the user can then type a command (called an expression) and ox will immediately evaluate it.
ox --> (print "hello world") "hello world" () ox -->We told ox to print a string, so it did... immediately. It then returned to the prompt, and awaits our next command. The "()" will be discussed later.