diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_backward_compatibility.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_backward_compatibility.txt | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/js/scripting-lang/scratch_tests/test_backward_compatibility.txt b/js/scripting-lang/scratch_tests/test_backward_compatibility.txt deleted file mode 100644 index 787423f..0000000 --- a/js/scripting-lang/scratch_tests/test_backward_compatibility.txt +++ /dev/null @@ -1,21 +0,0 @@ -/* Test backward compatibility */ - -x : 5; -f : x -> x * 2; -g : x -> x + 1; - -/* All these should work exactly as before */ -result1 : x + 5; -..out result1; - -result2 : f x; -..out result2; - -result3 : f (g x); -..out result3; - -result4 : -x; -..out result4; - -result5 : not true; -..out result5; \ No newline at end of file |