about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_map_comparison.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_map_comparison.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_map_comparison.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/js/scripting-lang/scratch_tests/test_map_comparison.txt b/js/scripting-lang/scratch_tests/test_map_comparison.txt
deleted file mode 100644
index 742c9dd..0000000
--- a/js/scripting-lang/scratch_tests/test_map_comparison.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Test to compare map and each behavior */
-
-numbers : {1, 2, 3, 4, 5};
-add_ten : x -> x + 10;
-
-/* Test map with single table */
-map_result : map @add_ten numbers;
-..out "Map with single table:";
-..out map_result;
-
-/* Test each with single table */
-each_result : each @add_ten numbers;
-..out "Each with single table:";
-..out each_result; 
\ No newline at end of file