-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
26 lines (26 loc) · 1.38 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
{
"id": "rust/kaisugi",
"name": "Whitespace Interpreter",
"authors": ["Kaito Sugimoto"],
"license": "none",
"languages": ["Rust"],
"tags": ["interpreter"],
"date": "2018-11-23 21:35:24 +0900",
"spec_version": "0.2",
"source": ["https://github.com/kaisugi/WhitespaceInterpreter"],
"submodules": [{ "path": "WhitespaceInterpreter", "url": "https://github.com/kaisugi/WhitespaceInterpreter" }],
"whitespace": { "extension": "ws" },
"programs": [
{ "path": "examples/c.ws", "equivalent": "count.ws", "spec_version": "0.2" },
{ "path": "examples/calc.ws", "equivalent": "calc.ws", "spec_version": "0.2" },
{ "path": "examples/count.ws", "equivalent": "count.ws", "spec_version": "0.2" },
{ "path": "examples/fibonacci.ws", "equivalent": "fibonacci.ws", "spec_version": "0.2" },
{ "path": "examples/hanoi.ws", "equivalent": "hanoi.ws", "spec_version": "0.2" },
{ "path": "examples/hworld.ws", "equivalent": "hworld.ws", "spec_version": "0.2" },
{ "path": "examples/name.ws", "equivalent": "name.ws", "spec_version": "0.2" },
{ "path": "examples/nerd.ws", "equivalent": "nerd.ws", "spec_version": "0.2" },
{ "path": "examples/quine.ws", "equivalent": "quine.ws", "spec_version": "0.2" },
{ "path": "examples/quine-2.ws", "equivalent": "quine-2.ws", "spec_version": "0.2" }
],
"commands": [{ "type": "interpreter", "bin": "wi", "usage": "<file>" }]
}