文件名称:intscript:可以编译为intcode的微小语言
文件大小:13KB
文件格式:ZIP
更新时间:2024-05-16 14:43:15
Python
字样 编译在Advent of Code使用的上运行的程序。 使用以下命令安装要求: pip install -r requirements.txt 编译程序: python intscript.py samples/fibonacci.is > samples/fibonacci.ic 要运行程序,请传递intcode程序,然后输入以下内容: python intcode.py samples/fibonacci.ic 15 它将打印程序生成的输出: [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610] 基本语法: # Read an input into variable `n` input n; # Output the value of variable `n` output n; # Basic expr
【文件预览】:
intscript-master
----intscript.lark(1KB)
----intscript.py(19KB)
----intscript_tests.py(8KB)
----tests()
--------comparisons.is(361B)
--------booleans.is(171B)
--------arrays.is(287B)
----LICENSE(1KB)
----samples()
--------fibonacci.is(112B)
--------intcode.is(4KB)
----requirements.txt(19B)
----.gitignore(1KB)
----README.md(856B)
----intcode.py(3KB)