ablescript/able-script-test/carts.able

8 lines
133 B
Plaintext
Raw Normal View History

2021-08-01 16:47:13 +00:00
functio helloable() {
"Hello, Able!" print;
}
var cart = ["able" <= 42, helloable <= "hello"];
cart[42] print;
cart["hello"]();