able-script/able-script-test/carts.able
2021-08-01 18:47:13 +02:00

8 lines
133 B
Plaintext

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