diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_and_operator.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_and_operator.txt | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/js/scripting-lang/scratch_tests/test_and_operator.txt b/js/scripting-lang/scratch_tests/test_and_operator.txt deleted file mode 100644 index b4624ff..0000000 --- a/js/scripting-lang/scratch_tests/test_and_operator.txt +++ /dev/null @@ -1,13 +0,0 @@ -/* Test the and operator in complex expressions */ - -/* Test the complex expression directly */ -test_expr : age -> age >= 0 and age <= 120; - -/* Test with different values */ -result1 : test_expr 30; /* Should be true */ -result2 : test_expr 150; /* Should be false */ -result3 : test_expr -5; /* Should be false */ - -..out result1; -..out result2; -..out result3; \ No newline at end of file |