First commit of partial RosettaCode contents.
Pushing this for testing purposes. Lots of work still needed.
This commit is contained in:
commit
1e05ecd7ee
781 changed files with 9080 additions and 0 deletions
7
Task/FizzBuzz/PicoLisp/fizzbuzz-2.l
Normal file
7
Task/FizzBuzz/PicoLisp/fizzbuzz-2.l
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
(for N 100
|
||||
(prinl
|
||||
(cond
|
||||
((=0 (% N 15)) "FizzBuzz")
|
||||
((=0 (% N 3)) "Fizz")
|
||||
((=0 (% N 5)) "Buzz")
|
||||
(T N) ) ) )
|
||||
3
Task/FizzBuzz/PicoLisp/fizzbuzz.l
Normal file
3
Task/FizzBuzz/PicoLisp/fizzbuzz.l
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(for N 100
|
||||
(prinl
|
||||
(or (pack (at (0 . 3) "Fizz") (at (0 . 5) "Buzz")) N) ) )
|
||||
Loading…
Add table
Add a link
Reference in a new issue