ablescript/examples/carts.able
2022-06-03 00:10:19 +02:00

9 lines
139 B
Plaintext

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