-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
74 lines (74 loc) · 1.47 KB
/
config.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
65
66
67
68
69
70
71
72
73
74
{
"language": "ARM32 Assembly",
"slug": "arm32-assembly",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "TODO: add blurb",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 4,
"highlightjs_language": "armasm"
},
"files": {
"solution": [
"%{snake_slug}.s"
],
"test": [
"%{snake_slug}_test.c"
],
"example": [
".meta/example.s"
],
"exemplar": [
".meta/exemplar.s"
]
},
"exercises": {
"concept": [],
"practice": [
{
"slug": "hello-world",
"name": "Hello World",
"uuid": "a442b622-4adb-4ff3-8df3-538b63a89b71",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"strings"
]
},
{
"slug": "leap",
"name": "Leap",
"uuid": "1e827e53-5529-44a0-8772-a9068ad8b4ee",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"conditionals",
"integers"
]
}
]
},
"concepts": [],
"key_features": [],
"tags": [
"paradigm/imperative",
"paradigm/procedural",
"typing/static",
"typing/weak",
"execution_mode/compiled",
"platform/windows",
"platform/mac",
"platform/linux",
"runtime/standalone_executable",
"used_for/embedded_systems"
]
}