文件名称:Emesh:用 javascript 编写的玩具编程语言
文件大小:15KB
文件格式:ZIP
更新时间:2024-08-02 00:51:43
JavaScript
埃梅什 为乐趣而创建的玩具编程语言 安装 $ npm install -g emesh 用 # Launch REPL $ emesh # Execute source file $ emesh /path/to/input_file.em 句法 // Output out ( "Hello World" ) // Hello World out ( 5 ) // 5 // Addition + ( 2 , 5 ) // 7 + ( 2 , 2 , 5 ) // 9 + ( 1 , 1 , 1 , 1 , 1 ) // 5 // Substraction - ( 6 , 3 ) // 3 - ( 5 , 15 )
【文件预览】:
Emesh-master
----.gitignore(19B)
----package.json(446B)
----src()
--------expressions.js(1002B)
--------repl.js(880B)
--------emesh.js(553B)
--------parser.js(2KB)
--------runtime.js(386B)
--------utils.js(265B)
--------environment.js(9KB)
--------interpreter.js(1KB)
----etc()
--------emesh.png(4KB)
----LICENSE(1KB)
----examples()
--------fizzbuzz.em(506B)
--------counter.em(103B)
----README.md(2KB)
----test()
--------test.environment.js(6KB)