diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/fizzbuzz_explorations.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/fizzbuzz_explorations.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/js/scripting-lang/scratch_tests/fizzbuzz_explorations.txt b/js/scripting-lang/scratch_tests/fizzbuzz_explorations.txt deleted file mode 100644 index fc6c7d1..0000000 --- a/js/scripting-lang/scratch_tests/fizzbuzz_explorations.txt +++ /dev/null @@ -1,7 +0,0 @@ -predicates : n -> apply @logicalAnd (equals (n % 3) 0) (equals (n % 5) 0); -fizzbuzz : n -> - when predicates n is - true then "FizzBuzz" - _ then n; - -..out fizzbuzz 100; |