1 个不稳定版本
0.1.0 | 2024年1月27日 |
---|
#78 in #lisp
在 common_risp 中使用
17KB
377 行
common_risp
Common RISP 是一个嵌入在Rust代码中的LISP语言实现。
开始使用
以下代码使用LISP格式计算并打印数值。
fn main() {
common_risp::compile!(
(print 99)
(print (+ 1 2 (* 3 4) 5))
);
}
执行结果如下
Compiling common_risp v0.0.0 (/home/myyrakle/Codes/Rust/common_risp/common_risp)
Finished dev [unoptimized + debuginfo] target(s) in 0.10s
Running `target/debug/common_risp`
99
20
更多信息
请参阅文档获取更多信息。