about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_functions.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_functions.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_functions.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/js/scripting-lang/scratch_tests/test_functions.txt b/js/scripting-lang/scratch_tests/test_functions.txt
deleted file mode 100644
index 8e3ea43..0000000
--- a/js/scripting-lang/scratch_tests/test_functions.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Test individual functions */
-f1 : x -> x + 1;
-f2 : x -> x * 2;
-f3 : x -> x - 1;
-
-test1 : f1 10;
-test2 : f2 10;
-test3 : f3 10;
-
-..out "f1(10) = ";
-..out test1;
-..out "f2(10) = ";
-..out test2;
-..out "f3(10) = ";
-..out test3; 
\ No newline at end of file