about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_pipe_simple.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_pipe_simple.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_pipe_simple.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/js/scripting-lang/scratch_tests/test_pipe_simple.txt b/js/scripting-lang/scratch_tests/test_pipe_simple.txt
deleted file mode 100644
index c96613d..0000000
--- a/js/scripting-lang/scratch_tests/test_pipe_simple.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-/* Test simple pipe function */
-f1 : x -> x + 1;
-f2 : x -> x * 2;
-
-simple_pipe : pipe @f1 @f2 10;
-simple_compose : compose @f1 @f2 10;
-
-..out "simple_pipe = ";
-..out simple_pipe;
-..out "simple_compose = ";
-..out simple_compose; 
\ No newline at end of file