-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
44 lines (44 loc) · 1.32 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/musflood",
"name": "CodeWars Kata",
"authors": ["Megan Flood"],
"license": "MIT",
"languages": ["Python"],
"tags": ["interpreter"],
"date": "2017-10-20 20:53:21 -0700",
"spec_version": "0.3",
"source": ["https://github.com/musflood/code-katas"],
"submodules": [{ "path": "code-katas", "url": "https://github.com/musflood/code-katas" }],
"challenges": ["Codewars"],
"assembly": {
"mnemonics": {
"push": "push",
"dup": "duplicate_top_value",
"copy": "duplicate_nth_value",
"swap": "swap_top_two_values",
"drop": "discard_top_value",
"slide": "discard_below_top_value",
"add": "+",
"sub": "-",
"mul": "*",
"div": "//",
"mod": "%",
"store": "stack_to_heap",
"retrieve": "heap_to_stack",
"label": "label_position",
"call": "call_subroutine",
"jmp": "jump_unconditionally",
"jz": "jump_zero_conditional",
"jn": "jump_neg_conditional",
"ret": "exit_subroutine",
"end": "exit_program",
"printc": "output_character",
"printi": "output_number",
"readc": "input_character",
"readi": "input_number"
},
"usage": ["enum"]
},
"run_errors": "Needs Codewars entrypoint",
"commands": [{ "type": "interpreter", "bin": "esolang-whitespace/esolang_whitespace.py" }]
}