about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_pattern_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_pattern_debug.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_pattern_debug.txt14
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