/* Debug test for table pattern matching */ /* Test 1: Basic table creation with key-value pairs */ test_table : { status: "placeholder" }; ..out "Test table created"; /* Test 2: Check table contents */ ..out test_table.status; /* Test 3: Test ..listen function */ state : ..listen; ..out "Listen state created"; ..out state.status; ..out state.message; /* Test 4: Test table pattern matching */ result : when state is { status: "placeholder" } then "Placeholder detected" _ then "Unknown state"; ..out result;