/* Debug test for arrow functions */ // Test 1: Regular arrow function assignment add_func : x y -> x + y; // Test 2: Arrow function in table calculator : { add: x y -> x + y }; // Test 3: Just the table creation table_only : { name: "test", add: x y -> x + y }; // Output tests ..out "=== DEBUG ARROW FUNCTIONS ==="; ..out "Regular function:"; result1 : add_func 5 3; ..out result1; ..out "Table function:"; result2 : calculator.add 5 3; ..out result2;