diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_pattern_debug.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_pattern_debug.txt | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/js/scripting-lang/scratch_tests/test_pattern_debug.txt b/js/scripting-lang/scratch_tests/test_pattern_debug.txt deleted file mode 100644 index ef8b676..0000000 --- a/js/scripting-lang/scratch_tests/test_pattern_debug.txt +++ /dev/null @@ -1,14 +0,0 @@ -/* 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; \ No newline at end of file |