about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_simple_and.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_simple_and.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_simple_and.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/js/scripting-lang/scratch_tests/test_simple_and.txt b/js/scripting-lang/scratch_tests/test_simple_and.txt
deleted file mode 100644
index fbf2edf..0000000
--- a/js/scripting-lang/scratch_tests/test_simple_and.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-/* 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