thp-web/md/learn/index.yaml

71 lines
1.3 KiB
YAML
Raw Normal View History

path: ""
name: ""
has_index: true
children:
- path: index
name: Index
2023-09-15 03:15:35 +00:00
- path: install
name: Install
- path: basics
name: Basics
children:
- path: hello-world
name: Hello, world!
- name: Variables
path: variables
2023-10-02 01:41:38 +00:00
- path: datatypes
name: Datatypes
2023-09-15 03:15:35 +00:00
- path: comments
name: Comments
- name: Flow control
path: flow-control
children:
- name: Conditionals
path: conditionals
2023-10-02 01:41:38 +00:00
- name: Loops
path: loops
- name: Match
path: match
2024-03-16 14:30:32 +00:00
- name: Data structures
path: data-structures
2023-10-02 01:41:38 +00:00
children:
- name: Tuples
path: tuples
- name: Arrays
path: arrays
- name: Maps
path: maps
2024-03-16 14:30:32 +00:00
- name: Enums
path: enums
2023-10-02 01:41:38 +00:00
- name: Functions
path: functions
children:
- name: Declaration
path: declaration
- name: Parameter references
path: parameters
- name: Higher-order functions
path: higher-order
- name: Lambdas
path: lambdas
2024-03-16 14:30:32 +00:00
- name: Error handling
path: error-handling
2023-10-02 01:41:38 +00:00
children:
2024-03-16 14:30:32 +00:00
- name: Nullable types
path: "null"
- name: Try expressions
path: try
2023-10-02 01:41:38 +00:00
- name: Classes
path: classes
children:
- name: Definition
path: definition
- name: Static
path: static
2023-10-05 12:56:34 +00:00
- name: Interfaces
path: interfaces
- name: Anonymous classes
path: anonymous
- name: Magic
path: magic