about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_and_negative_fixed.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_and_negative_fixed.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_and_negative_fixed.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/js/scripting-lang/scratch_tests/test_and_negative_fixed.txt b/js/scripting-lang/scratch_tests/test_and_negative_fixed.txt
deleted file mode 100644
index f10bd9b..0000000
--- a/js/scripting-lang/scratch_tests/test_and_negative_fixed.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Test and operator with negative numbers - fixed syntax */
-
-/* Test with proper parentheses */
-result1 : ((-5) >= 0) and ((-5) <= 120);
-
-/* Test step by step */
-step1 : (-5) >= 0;
-step2 : (-5) <= 120;
-result2 : step1 and step2;
-
-..out result1;
-..out step1;
-..out step2;
-..out result2; 
\ No newline at end of file