forked from exercism/arm64-assembly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
65 lines (65 loc) · 1.4 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
{
"track_id": "arm64-assembly",
"language": "ARM64 Assembly",
"slug": "arm64-assembly",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "ARM64/AArch64 assembly is a low-level programming language typically used in recent smartphone and tablet bootloaders, and operating system kernels.",
"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": "669a233b-b6c3-4d18-81d8-41b906ad5eb1",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"strings"
]
}
]
},
"concepts": [],
"key_features": [],
"tags": [
"paradigm/imperative",
"paradigm/procedural",
"typing/static",
"typing/weak",
"execution_mode/compiled",
"platform/android",
"platform/ios",
"platform/mac",
"platform/linux",
"runtime/standalone_executable",
"used_for/embedded_systems",
"used_for/mobile"
]
}