-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconfig.json
214 lines (214 loc) · 5.13 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"language": "Pony",
"slug": "pony",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "Pony is an open-source, object-oriented, actor-model, capabilities-secure, high-performance programming language.",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 2,
"highlightjs_language": "pony"
},
"files": {
"solution": [
"%{snake_slug}.pony"
],
"test": [
"test.pony"
],
"example": [
"example.pony"
],
"exemplar": [
".meta/exemplar.pony"
]
},
"exercises": {
"concept": [],
"practice": [
{
"slug": "anagram",
"name": "Anagram",
"uuid": "4471c6ee-1dfa-4520-99fb-aa1f9a543053",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"reference_capabilities",
"strings"
]
},
{
"slug": "atbash-cipher",
"name": "Atbash Cipher",
"uuid": "bd0cb4f4-b1d9-412f-ac35-c4b4136260d7",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"iterators",
"strings"
]
},
{
"slug": "beer-song",
"name": "Beer Song",
"uuid": "fc48383d-9e1c-49a0-955f-b14bcbd3e801",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"match",
"strings"
]
},
{
"slug": "bob",
"name": "Bob",
"uuid": "3b11a07d-1d32-4dc1-b580-7ceaefa5ddd6",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"strings"
]
},
{
"slug": "difference-of-squares",
"name": "Difference Of Squares",
"uuid": "f0bcb245-9e02-476c-9470-5f41c9358960",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"iterators",
"math"
]
},
{
"slug": "hamming",
"name": "Hamming",
"uuid": "c2f970d3-810c-4504-8592-f523b1d61cbb",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"errors"
]
},
{
"slug": "hello-world",
"name": "Hello World",
"uuid": "cc5f77d1-b94d-4a05-b205-08eaa00bf49e",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"methods",
"primitives"
]
},
{
"slug": "leap",
"name": "Leap",
"uuid": "f4174500-ae74-499a-9f7b-638238a28843",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"booleans"
]
},
{
"slug": "pascals-triangle",
"name": "Pascals Triangle",
"uuid": "bb3fa1fd-6472-4806-bd1f-642541437d40",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"arrays",
"iterators",
"math"
]
},
{
"slug": "rna-transcription",
"name": "Rna Transcription",
"uuid": "27087d27-8ca9-48e7-af64-fda35af114f4",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"errors",
"iterators",
"strings"
]
},
{
"slug": "roman-numerals",
"name": "Roman Numerals",
"uuid": "94829aed-9496-47d4-b43d-ad2f3ea2a839",
"practices": [],
"prerequisites": [],
"difficulty": 2,
"topics": [
"errors",
"strings"
]
}
]
},
"concepts": [],
"key_features": [
{
"title": "Concurrency",
"content": "Pony implements the Actor model to simplify concurrency",
"icon": "concurrency"
},
{
"title": "Really Type Safe",
"content": "Pony is REALLY type-safe. There's a mathematical proof and everything!",
"icon": "statically-typed"
},
{
"title": "Exception Safe",
"content": "There are no runtime exceptions. All exceptions have defined semantics and are ALWAYS caught",
"icon": "safe"
},
{
"title": "Data-race Free",
"content": "Pony has no locks or atomic operations. The typesystem ensures all operations are safe.",
"icon": "fast"
},
{
"title": "Capabilities Secure",
"content": "Pony doesn't trust supply-chains. Libraries can't touch the outside world without your permission",
"icon": "powerful"
},
{
"title": "Deadlock Free",
"content": "Pony has no locks, synchronous messages, or even a sleep command. No locks, no Deadlocks",
"icon": "fast"
}
],
"tags": [
"paradigm/object_oriented",
"typing/static",
"typing/strong",
"execution_mode/compiled",
"platform/windows",
"platform/mac",
"platform/linux",
"runtime/standalone_executable",
"used_for/backends",
"used_for/financial_systems",
"used_for/scientific_calculations"
]
}