macro_lisp 0.2.0

Lisp-like DSL for Rust language.
Documentation
// run command:
//    $ rustup run nightly cargo run --example hello
//
// if not install nightly, then
//    $ rustup install nightly

extern crate macro_lisp;

use macro_lisp::lisp;

lisp!(pub module module_test
    (pub defun hello () ()
        (println "Hello, macro-lisp!")
    )
);

lisp!(defun main () ()
    (module_test::hello)
);