diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_each_step_by_step.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_each_step_by_step.txt | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/js/scripting-lang/scratch_tests/test_each_step_by_step.txt b/js/scripting-lang/scratch_tests/test_each_step_by_step.txt deleted file mode 100644 index 2a0e3ef..0000000 --- a/js/scripting-lang/scratch_tests/test_each_step_by_step.txt +++ /dev/null @@ -1,26 +0,0 @@ -/* Step-by-step test for each combinator */ - -/* Basic table creation */ -numbers : {1, 2, 3}; - -/* Define function first */ -double : x -> x * 2; - -/* Test each step by step */ -step1 : each; -step2 : step1 @double; -step3 : step2 numbers; - -/* Test direct call */ -direct_result : each @double numbers; - -/* Output results */ -..out "=== EACH STEP BY STEP TEST ==="; -..out "Step 1 (each):"; -..out step1; -..out "Step 2 (each @double):"; -..out step2; -..out "Step 3 (result numbers):"; -..out step3; -..out "Direct result:"; -..out direct_result; \ No newline at end of file |