-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
136 lines (136 loc) · 3.45 KB
/
config.json
File metadata and controls
136 lines (136 loc) · 3.45 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"language": "ReScript",
"slug": "rescript",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "ReScript is a strongly typed functional language which compiles to both Javascript and native.",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 2,
"highlightjs_language": "reasonml"
},
"test_runner": {
"average_run_time": 7
},
"files": {
"solution": [
"src/%{pascal_slug}.res"
],
"test": [
"tests/%{pascal_slug}_test.res"
],
"example": [
".meta/%{pascal_slug}.res",
".meta/%{pascal_slug}.resi"
],
"exemplar": [
".meta/src/%{pascal_slug}.res",
".meta/src/%{pascal_slug}.resi"
],
"editor": [
"src/%{pascal_slug}.resi"
]
},
"exercises": {
"practice": [
{
"slug": "hello-world",
"name": "Hello World",
"uuid": "63d72b81-c7a4-4a94-8224-69f4c68cc374",
"practices": [],
"prerequisites": [],
"difficulty": 1
},
{
"slug": "acronym",
"name": "Acronym",
"uuid": "175a3fc7-2d00-4d42-b4a5-4e8d894603d9",
"practices": [],
"prerequisites": [],
"difficulty": 2
},
{
"slug": "leap",
"name": "Leap",
"uuid": "473f85b9-c74e-4c6f-91a0-003b370bff5c",
"practices": [],
"prerequisites": [],
"difficulty": 2
},
{
"slug": "two-fer",
"name": "Two-Fer",
"uuid": "2a03dbf7-5aae-4859-8fde-b51c11cab02f",
"practices": [],
"prerequisites": [],
"difficulty": 2
},
{
"slug": "resistor-color-duo",
"name": "Resistor Color Duo",
"uuid": "01cf8fd2-3e48-4b2a-b06f-7a1fdc42d561",
"practices": [],
"prerequisites": [],
"difficulty": 2
},
{
"slug": "binary-search",
"name": "Binary Search",
"uuid": "75286043-b11b-4653-bfe8-6854ef9fac23",
"practices": [],
"prerequisites": [],
"difficulty": 4
}
]
},
"key_features": [
{
"title": "OCaml's type system",
"content": "ReScript brings OCaml's battle-tested powerful type system to JavaScript.",
"icon": "stable"
},
{
"title": "Inferred types",
"content": "Types are inferred by the ReScript compiler and are guaranteed to be correct.",
"icon": "immutable"
},
{
"title": "Functional Programming",
"content": "Like OCaml, ReScript is a functional programming language with pattern matching, variants and more.",
"icon": "functional"
},
{
"title": "JavaScript interop",
"content": "JavaScript interoperability is easy, allowing existing JavaScript packages to be used.",
"icon": "interop"
},
{
"title": "Fast compiler",
"content": "ReScript compilation times are super fast which means fast iteration cycles.",
"icon": "fast"
},
{
"title": "Refactor with ease",
"content": "Compiler guides you through all places that need to be fixed during refactor until it just works.",
"icon": "fun"
}
],
"tags": [
"execution_mode/compiled",
"paradigm/functional",
"platform/linux",
"platform/mac",
"platform/web",
"platform/windows",
"typing/static",
"typing/strong",
"used_for/frontends",
"used_for/web_development"
]
}