/* Test pattern matching with boolean values */ /* Test direct boolean matching */ test_bool : value -> when value is true then "true matched" false then "false matched" _ then "wildcard matched"; result1 : test_bool true; result2 : test_bool false; ..out result1; ..out result2;