aboutsummaryrefslogtreecommitdiff
path: root/TODO.md
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-08-12 22:53:06 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-08-12 22:53:06 +0100
commit279f04cb63e45ceb9a9df82540d5362565b8b37b (patch)
treebf71e8d7829e6ccf29320dacaf7c4742423683c5 /TODO.md
downloadmicro-lang-hs-279f04cb63e45ceb9a9df82540d5362565b8b37b.tar.gz
micro-lang-hs-279f04cb63e45ceb9a9df82540d5362565b8b37b.zip
Initial import
Diffstat (limited to 'TODO.md')
-rw-r--r--TODO.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/TODO.md b/TODO.md
new file mode 100644
index 0000000..0e60282
--- /dev/null
+++ b/TODO.md
@@ -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
+