Store complex types in variables

This commit is contained in:
2022-08-22 13:28:44 +01:00
parent 45920f763c
commit 300f8e382b
5 changed files with 51 additions and 10 deletions

View File

@@ -12,11 +12,21 @@ DONE: break and continue statements
DONE: truthiness rethink
DONE: string concat with the + operator
DONE: increment & decrement operators
DONE: store compound types in variables
TODO: functions take a number of parameters
TODO: functions can return any number of values
TODO: function arguments can have specified types
TODO: function returns can have specified types
TODO: functions are invoked by calling thier names
TODO: functions are first-class citizens
TODO: functions last argument can be a rest parameter
TODO: && and || operators
TODO: A way to check the type of a variable (typeOf keyword)
TODO: a = b = c = 1; ?
TODO: are compounds shallow or deep copies?
TODO: functions, and all of their features
TODO: Assertion-based test scripts
TODO: standard library
TODO: external runner library