文件名称:nixt:Nixt是用Rust编写的一种解释型编程语言
文件大小:30KB
文件格式:ZIP
更新时间:2024-06-16 10:34:02
Rust
尼克斯 Nixt是用Rust编写的一种受Lisp启发的解释性编程语言 指数 关于 Nixt的目标是提供一种快速且易于学习的脚本语言,由于其简单的语法和正确的性能而可提高工作效率 例子 阶乘 (const factorial (func (n) { ( let toret 1 ) ( let i 2 ) (while (<= i n) { (set toret (* toret i)) (set i (+ i 1 )) }) (ret toret) })) 阿克曼函数 ( let ackermann (func (m n) { ( let toret 0 ) ( if (= m 0 ) (set toret (+ n 1 )) ( if ( and (> m 0 ) (= n 0 )) (set toret (acker
【文件预览】:
nixt-master
----.gitignore(19B)
----src()
--------core()
--------main.rs(2KB)
--------stdlib()
--------utils()
--------tests.rs(6KB)
----LICENSE(15KB)
----CHANGELOG.md(843B)
----Cargo.toml(222B)
----.github()
--------workflows()
----std()
--------math.nxt(2KB)
--------string.nxt(987B)
----README.md(2KB)
----.idea()
--------.gitignore(176B)
--------vcs.xml(180B)
--------nixt.iml(425B)
--------modules.xml(260B)
----deploy.sh(149B)