ablescript/examples/melo-hello.able
Erin eac86b5e0b Changed variable declaration / assignment and equals syntax:
- `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
2022-04-18 20:34:08 +02:00

4 lines
57 B
Plaintext

dim hi /*wonk*/;
melo hi;
hi print; owo Should error out