I'm trying to use Mozart Oz. I download the execution binary from source forge: http://sourceforge.net/projects/mozart-oz/.
When launching Mozart.app, the emacs (aquamacs for Mac OS X) starts to do the coding within it.
For example, I can type in {Browse 'Hello World'}
and execute Oz -> Feed Buffer
to get the result in Tcl/Tk browser.
Then, how can I build or execute the Oz code in command line just like I do with Python or Ruby?
I found binaries in the bin directory.
/Applications/Mozart2.app/Contents/Resources/bin
├── oz
├── ozc
├── ozemulator
├── ozengine
└── ozwish
However, when I execute the code with ozc -c hello.oz
, I got %** variable Browse not introduced
error. What might be wrong?