aboutsummaryrefslogtreecommitdiff
path: root/TODO.md
blob: 0e602823a7855ac7026c027caaee09b2112defeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# TODO

Language features:
    > not in order
    * [ ] basic operators
    * [ ] type system
    * [ ] functions
    * [ ] anonymous functions (lambdas)
    * [ ] loops (while-like, infinite, break, continue)
    * [ ] basic integer types: u8, s8, u16, s16
    * [ ] equality, comparison operators
    * [ ] logic operators
    * [ ] bitwise operators
    * [ ] variables
    * [ ] constants
    * [ ] if-else
    * [ ] built-in support (run-time)
    * [ ] arrays
    * [ ] strings (zero ended array of u8?)
    * [ ] for-in
    * [ ] structures