about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_available_functions.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_available_functions.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_available_functions.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/js/scripting-lang/scratch_tests/test_available_functions.txt b/js/scripting-lang/scratch_tests/test_available_functions.txt
deleted file mode 100644
index 0274711..0000000
--- a/js/scripting-lang/scratch_tests/test_available_functions.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Test to see what functions are available */
-
-/* Test basic arithmetic */
-result1 : 5 + 3;
-..out "5 + 3:";
-..out result1;
-
-/* Test basic comparison */
-result2 : 5 = 3;
-..out "5 = 3:";
-..out result2;
-
-result3 : 5 = 5;
-..out "5 = 5:";
-..out result3;
-
-/* Test function definition */
-double : x -> x * 2;
-result4 : double 5;
-..out "double 5:";
-..out result4;
-
-/* Test table creation */
-table : {1, 2, 3};
-..out "table:";
-..out table; 
\ No newline at end of file