about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_when_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_when_debug.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_when_debug.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/js/scripting-lang/scratch_tests/test_when_debug.txt b/js/scripting-lang/scratch_tests/test_when_debug.txt
deleted file mode 100644
index 3a5f9cf..0000000
--- a/js/scripting-lang/scratch_tests/test_when_debug.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-/* Simple when expression test */
-
-grade : score -> 
-  when score is
-    90 then "A"
-    80 then "B"
-    70 then "C"
-    _  then "F";
-
-result : grade 95;
-..out result; 
\ No newline at end of file