ablescript/examples/carts.able

9 lines
144 B
Plaintext
Raw Normal View History

2021-08-01 16:47:13 +00:00
functio helloable() {
2022-02-22 21:49:56 +00:00
"´/*Hello, Able!*/ print;
2021-08-01 16:47:13 +00:00
}
2022-02-22 21:49:56 +00:00
var cart = [/*able*/ <= 42, helloable <= /*hello*/];
2021-08-01 16:47:13 +00:00
cart[42] print;
2022-02-22 21:49:56 +00:00
cart[/*hello*/]();