-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
64 lines (64 loc) · 2.58 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"id": "python/phlip-pywhitespace",
"name": "pywhitespace",
"authors": ["Phillip Bradbury"],
"license": "GPL-2.0-or-later",
"languages": ["Python"],
"tags": ["interpreter"],
"date": "2004-08-03 07:32:50 +0000",
"spec_version": "0.3",
"source": [
"https://web.archive.org/web/20060517072710/http://compsoc.dur.ac.uk:80/archives/whitespace/2004-August/000048.html",
"https://web.archive.org/web/20081025231130/http://compsoc.dur.ac.uk:80/archives/whitespace/2007-December/000065.html",
"https://web.archive.org/web/20061007203840/http://www.cs.newcastle.edu.au:80/~c3018900/pywhitespace.tar.bz2",
"https://www.mrphlip.com/pywhitespace.tar.bz2",
"https://github.com/wspace/phlip-pywhitespace"
],
"submodules": [{ "path": "pywhitespace", "url": "https://github.com/wspace/phlip-pywhitespace" }],
"whitespace": { "nonstandard": [{ "name": "trace", "seq": "LLT" }], "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Dup",
"copy": "Ref",
"swap": "Swap",
"drop": "Discard",
"slide": "Slide",
"add": "Plus",
"sub": "Minus",
"mul": "Times",
"div": "Divide",
"mod": "Modulo",
"store": "Store",
"retrieve": "Retrieve",
"label": "Label",
"call": "Call",
"jmp": "Jump",
"jz": "JumpZero",
"jn": "JumpNeg",
"ret": "Return",
"end": "End",
"printc": "OutputChar",
"printi": "OutputNum",
"readc": "InputChar",
"readi": "InputNum",
"dumptrace": "Trace"
},
"usage": ["debug"]
},
"programs": [
{ "path": "docs/tutorial.html", "polyglot": ["HTML"], "spec_version": "0.2" },
{ "path": "examples/chr.ws", "spec_version": "0.2" },
{ "path": "examples/ord.ws", "spec_version": "0.2" },
{ "path": "examples/hworld.ws", "equivalent": "hworld.ws", "spec_version": "0.2" },
{ "path": "examples/count.ws", "equivalent": "count.ws", "spec_version": "0.2" },
{ "path": "examples/name.ws", "equivalent": "name.ws", "spec_version": "0.2" },
{ "path": "examples/calc.ws", "equivalent": "calc.ws", "spec_version": "0.2" },
{ "path": "examples/fact.ws", "equivalent": "fact.ws", "spec_version": "0.2" },
{ "path": "examples/hanoi.ws", "equivalent": "hanoi.ws", "spec_version": "0.2" },
{ "path": "examples/loctest.ws", "equivalent": "loctest.ws", "spec_version": "0.3" },
{ "path": "examples/trace.ws", "spec_version": "0.2", "authors": ["Thalia Archibald"] }
],
"commands": [{ "type": "interpreter", "bin": "main.py", "usage": "<file>" }],
"todo": "Automate repo construction in repo-archival."
}