forked from rust-lang/rust-by-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.json
56 lines (56 loc) · 2.39 KB
/
order.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
[
{ "id": "hello", "title": "Hello World" },
{ "id": "print", "title": "Formatted print" },
{ "id": "literals", "title": "Literals" },
{ "id": "variables", "title": "Variables" },
{ "id": "type", "title": "Types and casting" },
{ "id": "if-else", "title": "if/else" },
{ "id": "loops", "title": "loop and while" },
{ "id": "for", "title": "for and range" },
{ "id": "functions", "title": "Functions" },
{ "id": "expression", "title": "Expressions" },
{ "id": "tuples", "title": "Tuples" },
{ "id": "match", "title": "Pattern matching" },
{ "id": "structs", "title": "Structs" },
{ "id": "generics", "title": "Generics" },
{ "id": "box", "title": "Box, stack and heap" },
{ "id": "move", "title": "Ownership and moves" },
{ "id": "borrow", "title": "RAII and borrow" },
{ "id": "methods", "title": "Methods" },
{ "id": "lifetime", "title": "Lifetimes" },
{ "id": "constants", "title": "Global constants" },
{ "id": "option", "title": "fail! and Option" },
{ "id": "enum", "title": "Enums" },
{ "id": "array", "title": "Arrays and Slices" },
{ "id": "trait", "title": "Traits" },
{ "id": "clone", "title": "Copy and Clone" },
{ "id": "bounds", "title": "Bounds" },
{ "id": "iter", "title": "Iterators" },
{ "id": "closures", "title": "Closures" },
{ "id": "hof", "title": "Higher Order Functions" },
{ "id": "vec", "title": "Vectors" },
{ "id": "str", "title": "Strings" },
{ "id": "tasks", "title": "Tasks" },
{ "id": "channels", "title": "Channels" },
{ "id": "timers", "title": "Timers" },
{ "id": "sockets", "title": "Unix sockets" },
{ "id": "bench", "title": "Benchmarking" },
{ "id": "wip", "title": "Work In Progress" },
{ "id": "crates", "title": "Crates" },
{ "id": "drop", "title": "Drop" },
{ "id": "ffi", "title": "Foreign Function Interface" },
{ "id": "file", "title": "File I/O" },
{ "id": "fs", "title": "Filesystem Operations" },
{ "id": "json", "title": "JSON parsing" },
{ "id": "macros", "title": "macro_rules!" },
{ "id": "mod", "title": "Modules" },
{ "id": "process", "title": "Child processes" },
{ "id": "rand", "title": "Random" },
{ "id": "regex", "title": "Regex" },
{ "id": "result", "title": "Result" },
{ "id": "select", "title": "select!" },
{ "id": "stdio", "title": "Standard I/O" },
{ "id": "test", "title": "Testing" },
{ "id": "try", "title": "try!" },
{ "id": "unsafe", "title": "Unsafe operations" }
]