ablescript/examples/carts.able

9 lines
139 B
Plaintext
Raw Normal View History

2021-08-01 11:47:13 -05:00
functio helloable() {
/*Hello, Able!*/ print;
2021-08-01 11:47:13 -05:00
}
2022-06-02 17:10:19 -05:00
cart dim [/*able*/ <= 42, helloable <= /*hello*/];
2021-08-01 11:47:13 -05:00
cart[42] print;
2022-02-22 15:49:56 -06:00
cart[/*hello*/]();