Data Update

This commit is contained in:
Ingy döt Net 2023-07-09 17:42:30 -04:00
parent 015c2add84
commit e50b5c3114
206 changed files with 6337 additions and 523 deletions

View file

@ -1,9 +1,13 @@
map:
- (x):
- s =:
str:
- if (zero? mod(x 3)): "Fizz"
- if (zero? mod(x 5)): "Buzz"
- println:
if (empty? s): [x, s]
- range(1 101)
map(say):
loop [i 1, l []]:
if (i > 100):
- l
- ^^^:
- inc(i)
- conj:
- l
- ???:
zero?(mod(i 15)) : "FizzBuzz"
zero?(mod(i 5)) : "Buzz"
zero?(mod(i 3)) : "Fizz"
:else: i