-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.json
56 lines (56 loc) · 1.11 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
{
"track_id": "shen",
"language": "Shen",
"slug": "shen",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "A hosted Lisp with pattern matching, Prolog, and a powerful type system.",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 2,
"highlightjs_language": "clojure"
},
"files": {
"solution": [
"%{kebab_slug}.shen"
],
"test": [
"%{kebab_slug}-tests.shen"
],
"example": [
".meta/example.shen"
],
"exemplar": [
".meta/exemplar.shen"
]
},
"exercises": {
"concept": [],
"practice": [
{
"slug": "hello-world",
"name": "Hello World",
"uuid": "807ee06d-2e12-41bd-be89-a5f69055733f",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
}
]
},
"concepts": [],
"key_features": [],
"tags": [
"paradigm/functional",
"paradigm/logic",
"typing/static",
"typing/dynamic",
"execution_mode/interpreted"
]
}