diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_when_string_debug.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_when_string_debug.txt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/js/scripting-lang/scratch_tests/test_when_string_debug.txt b/js/scripting-lang/scratch_tests/test_when_string_debug.txt deleted file mode 100644 index 247d3c0..0000000 --- a/js/scripting-lang/scratch_tests/test_when_string_debug.txt +++ /dev/null @@ -1,12 +0,0 @@ -getFunction : type -> - when type is - "double" then @double - "square" then @square - _ then @add1; - -double : x -> x * 2; -square : x -> x * x; -add1 : x -> x + 1; - -result : getFunction "double"; -..out result; \ No newline at end of file |