-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.json
More file actions
92 lines (92 loc) · 2.07 KB
/
config.json
File metadata and controls
92 lines (92 loc) · 2.07 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"language": "SNOBOL4",
"slug": "snobol4",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "SNOBOL4 is two languages in one: an unsurpassed pattern language, and a scripting language with an unique control structure.",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 2,
"highlightjs_language": "plaintext"
},
"files": {
"solution": [
"%{snake_slug}.sno"
],
"test": [
"test.sno"
],
"example": [
".meta/example.sno"
],
"invalidator": [
"lib/cmprep.sno",
"lib/inhale.sno",
"lib/listtests.sno",
"lib/nextword.sno",
"lib/whereami.sno"
]
},
"exercises": {
"practice": [
{
"slug": "hello-world",
"name": "Hello World",
"uuid": "5c3e0d0e-8633-44e9-b0ea-c99f762beef7",
"practices": [],
"prerequisites": [],
"difficulty": 1
},
{
"slug": "isogram",
"name": "Isogram",
"uuid": "73733b75-eb05-4612-95ca-ca8881892e76",
"practices": [],
"prerequisites": [],
"difficulty": 1
},
{
"slug": "pangram",
"name": "Pangram",
"uuid": "504253bc-e809-436a-a5c1-de79cdeb0897",
"practices": [],
"prerequisites": [],
"difficulty": 1
},
{
"slug": "raindrops",
"name": "Raindrops",
"uuid": "ace01c5b-6c5f-4a37-98cc-f2740676d971",
"practices": [],
"prerequisites": [],
"difficulty": 1
},
{
"slug": "leap",
"name": "Leap",
"uuid": "9767399e-cb95-40b2-b900-18a039b0f865",
"practices": [],
"prerequisites": [],
"difficulty": 1
}
]
},
"tags": [
"execution_mode/interpreted",
"paradigm/declarative",
"paradigm/imperative",
"platform/linux",
"platform/mac",
"platform/windows",
"runtime/language_specific",
"typing/dynamic",
"typing/weak",
"used_for/scripts"
]
}