-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
44 lines (44 loc) · 1.18 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
{
"id": "python/hearnderek-codewars",
"name": "WhitespaceInterpreter.py",
"authors": ["Derek Hearn"],
"license": "none",
"languages": ["Python"],
"tags": ["interpreter"],
"date": "2022-02-05 15:55:26 +0900",
"spec_version": "0.3",
"source": ["https://github.com/hearnderek/codewars"],
"submodules": [{ "path": "codewars", "url": "https://github.com/hearnderek/codewars" }],
"challenges": ["Codewars"],
"assembly": {
"mnemonics": {
"push": "append",
"dup": "dupe",
"copy": "dup_at",
"swap": "swap",
"drop": "pop",
"slide": "pop_x",
"add": "add",
"sub": "sub",
"mul": "mul",
"div": "div",
"mod": "mod",
"store": "heap_store",
"retrieve": "heap_retrieve",
"label": "mark_sub",
"call": "call_sub",
"jmp": "jmp",
"jz": "jmp_eq",
"jn": "jmp_lt",
"ret": "exit_sub",
"end": "terminate",
"printc": "output_char",
"printi": "output_number",
"readc": "read_chr",
"readi": "read_num"
},
"usage": ["enum"]
},
"run_errors": "Needs Codewars entrypoint",
"commands": [{ "type": "interpreter", "bin": "Python/WhitespaceInterpreter.py" }]
}