about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_bool_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_bool_debug.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_bool_debug.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/js/scripting-lang/scratch_tests/test_bool_debug.txt b/js/scripting-lang/scratch_tests/test_bool_debug.txt
deleted file mode 100644
index 8f05705..0000000
--- a/js/scripting-lang/scratch_tests/test_bool_debug.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Test boolean pattern matching more thoroughly */
-
-/* Test with direct boolean values */
-test1 : when true is
-  true then "true matched"
-  false then "false matched"
-  _ then "wildcard matched";
-
-test2 : when false is
-  true then "true matched"
-  false then "false matched"
-  _ then "wildcard matched";
-
-..out test1;
-..out test2; 
\ No newline at end of file