about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_enhanced_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_enhanced_debug.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_enhanced_debug.txt13
1 files changed, 0 insertions, 13 deletions
diff --git a/js/scripting-lang/scratch_tests/test_enhanced_debug.txt b/js/scripting-lang/scratch_tests/test_enhanced_debug.txt
deleted file mode 100644
index 5462858..0000000
--- a/js/scripting-lang/scratch_tests/test_enhanced_debug.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-/* Simple test to debug enhanced case statements */
-
-/* Test 1: Basic FizzBuzz */
-fizzbuzz : n ->
-  when (n % 3) (n % 5) is
-    0 0 then "FizzBuzz"
-    0 _ then "Fizz"
-    _ 0 then "Buzz"
-    _ _ then n;
-
-/* Test basic FizzBuzz */
-result1 : fizzbuzz 15;
-..out result1; 
\ No newline at end of file