Erin
eac86b5e0b
- `dim <ident> [value];` is now used for declaration - `<value> =: <assignable>` is used for assignments - As token `=` doesn't cause any ambiguity now, it can be used for equals operation
9 lines
139 B
Plaintext
9 lines
139 B
Plaintext
functio helloable() {
|
|
/*Hello, Able!*/ print;
|
|
}
|
|
|
|
dim cart [/*able*/ <= 42, helloable <= /*hello*/];
|
|
|
|
cart[42] print;
|
|
cart[/*hello*/]();
|