diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_nested_only.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_nested_only.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/js/scripting-lang/scratch_tests/test_nested_only.txt b/js/scripting-lang/scratch_tests/test_nested_only.txt deleted file mode 100644 index f3857fc..0000000 --- a/js/scripting-lang/scratch_tests/test_nested_only.txt +++ /dev/null @@ -1,15 +0,0 @@ -/* Test just the nested when expressions */ - -/* Ensure backward compatibility with nested when expressions */ -nested_classify : x y -> - when x is - 0 then when y is - 0 then "origin" - _ then "on y-axis" - _ then when y is - 0 then "on x-axis" - _ then "general position"; - -/* Test nested when expressions */ -nested1 : nested_classify 0 0; -..out nested1; \ No newline at end of file |