Email or username:

Password:

Forgot your password?
Top-level
(wryl)

@kr1sp1n @neauoire The C implementation should be able to be invoked by running..

./bin/modal lisp.modal

.. from the top level directory after running `make`.

The old `define` syntax is replaced with `<>` in the C implementation. You can add..

`define <> define`

.. to the top of any Modal source file to run it with the Python implementation. Bear in mind, I/O won't work in the Python implementation.

2 comments
Jorge Acereda

@wryl @kr1sp1n @neauoire In this case, to run lisp.modal I think you want the reverse:

<> define <>

kr1sp1n

@jacereda @wryl @neauoire
Thanks! Works with `<> define <>` at the top of examples/lisp.modal

Go Up