-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
39 lines (39 loc) · 1.19 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"id": "python/lachlancourt",
"name": "Whitespace Transpiler",
"authors": ["Lachlan Court"],
"license": "none",
"languages": ["Python"],
"tags": ["transpiler"],
"date": "2021-01-02 11:42:27 +1100",
"spec_version": "0.2",
"source": ["https://github.com/LachlanCourt/whitespace_transpiler"],
"submodules": [
{ "path": "whitespace_transpiler", "url": "https://github.com/LachlanCourt/whitespace_transpiler" }
],
"whitespace": {
"unimplemented": ["label", "call", "jmp", "jz", "jn", "ret", "end", "printc", "printi", "readc", "readi"],
"extension": "txt"
},
"programs": [
{ "path": "code.txt", "spec_version": "0.2" },
{ "path": "Sample whitespace code/Whitespace Calculator.docx" },
{ "path": "Sample whitespace code/Whitespace Factorial.docx" },
{ "path": "Sample whitespace code/Whitespace Hello World.docx" },
{
"path": "Sample whitespace code/Whitespace tutorial.html",
"equivalent": "tutorial.html",
"spec_version": "0.2"
}
],
"commands": [
{
"type": "transpiler",
"bin": "transpiler.py",
"usage": "",
"input": "code.txt",
"output": "stdout",
"notes": "Transpiles to Python"
}
]
}