about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_each_simple_call.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_each_simple_call.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_each_simple_call.txt20
1 files changed, 0 insertions, 20 deletions
diff --git a/js/scripting-lang/scratch_tests/test_each_simple_call.txt b/js/scripting-lang/scratch_tests/test_each_simple_call.txt
deleted file mode 100644
index 746d0d4..0000000
--- a/js/scripting-lang/scratch_tests/test_each_simple_call.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Simple test for each function call */
-
-/* Basic table creation */
-numbers : {1, 2, 3};
-
-/* Define function */
-double : x -> x * 2;
-
-/* Test direct function call */
-direct_call : double 5;
-
-/* Test each with explicit arguments */
-each_call : each @double numbers;
-
-/* Output results */
-..out "=== EACH SIMPLE CALL TEST ===";
-..out "Direct call result:";
-..out direct_call;
-..out "Each call result:";
-..out each_call; 
\ No newline at end of file