diff --git a/able-script-test/carts.able b/able-script-test/carts.able new file mode 100644 index 0000000..21b5a0d --- /dev/null +++ b/able-script-test/carts.able @@ -0,0 +1,8 @@ +functio helloable() { + "Hello, Able!" print; +} + +var cart = ["able" <= 42, helloable <= "hello"]; + +cart[42] print; +cart["hello"](); \ No newline at end of file