diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_simple_and.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_simple_and.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_simple_and.txt b/js/scripting-lang/scratch_tests/test_simple_and.txt new file mode 100644 index 0000000..fbf2edf --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_simple_and.txt @@ -0,0 +1,14 @@ +/* Test simple logicalAnd */ + +/* Simple boolean values */ +true_val : true; +false_val : false; + +/* Test logicalAnd with simple values */ +result1 : logicalAnd true_val false_val; +result2 : logicalAnd false_val true_val; +result3 : logicalAnd true_val true_val; + +..out result1; +..out result2; +..out result3; \ No newline at end of file |