Merge branch 'feature/coercions' of https://git.ablecorp.us/AbleScript/able-script into feature/coercions

pull/1/head
ondra05 2021-12-14 23:02:57 +01:00
commit 3a6cc2b461
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
functio helloable() { functio helloable() {
"Hello, Able!" print; "Hello, Able!" print;
} }
var cart = ["able" <= 42, helloable <= "hello"]; var cart = ["able" <= 42, helloable <= "hello"];
cart[42] print; cart[42] print;
cart["hello"](); cart["hello"]();