diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-08-12 22:53:06 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-08-12 22:53:06 +0100 |
commit | 279f04cb63e45ceb9a9df82540d5362565b8b37b (patch) | |
tree | bf71e8d7829e6ccf29320dacaf7c4742423683c5 /TODO.md | |
download | micro-lang-hs-279f04cb63e45ceb9a9df82540d5362565b8b37b.tar.gz micro-lang-hs-279f04cb63e45ceb9a9df82540d5362565b8b37b.zip |
Initial import
Diffstat (limited to 'TODO.md')
-rw-r--r-- | TODO.md | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,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 + |