about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_pipe_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_pipe_debug.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_pipe_debug.txt14
1 files changed, 0 insertions, 14 deletions
diff --git a/js/scripting-lang/scratch_tests/test_pipe_debug.txt b/js/scripting-lang/scratch_tests/test_pipe_debug.txt
deleted file mode 100644
index 5c8d5fb..0000000
--- a/js/scripting-lang/scratch_tests/test_pipe_debug.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Debug pipe function */
-
-double : x -> x * 2;
-add1 : x -> x + 1;
-
-/* Test pipe function step by step */
-step1 : pipe double;
-..out step1;
-
-step2 : step1 add1;
-..out step2;
-
-step3 : step2 5;
-..out step3; 
\ No newline at end of file