diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_original_problem.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_original_problem.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_original_problem.txt b/js/scripting-lang/scratch_tests/test_original_problem.txt new file mode 100644 index 0000000..e0d838f --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_original_problem.txt @@ -0,0 +1,6 @@ +add_func : x y -> x + y; +result : add_func @(3 + 2) @(4 + 1); +..out result; + +result2 : add_func (3 + 2) (4 + 1); +..out result2; \ No newline at end of file |