ablescript/able-script-test/carts.able

9 lines
133 B
Plaintext
Raw Normal View History

2021-08-01 11:47:13 -05:00
functio helloable() {
2021-12-14 15:57:04 -06:00
"Hello, Able!" print;
2021-08-01 11:47:13 -05:00
}
var cart = ["able" <= 42, helloable <= "hello"];
cart[42] print;
2021-12-14 15:57:04 -06:00
cart["hello"]();