A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
4
Task/Loops-Do-while/PicoLisp/loops-do-while-1.l
Normal file
4
Task/Loops-Do-while/PicoLisp/loops-do-while-1.l
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
(let Val 0
|
||||
(loop
|
||||
(println (inc 'Val))
|
||||
(T (=0 (% Val 6))) ) )
|
||||
2
Task/Loops-Do-while/PicoLisp/loops-do-while-2.l
Normal file
2
Task/Loops-Do-while/PicoLisp/loops-do-while-2.l
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
(let Val 0
|
||||
(until (=0 (% (println (inc 'Val)) 6))) )
|
||||
1
Task/Loops-Do-while/PicoLisp/loops-do-while-3.l
Normal file
1
Task/Loops-Do-while/PicoLisp/loops-do-while-3.l
Normal file
|
|
@ -0,0 +1 @@
|
|||
(for (Val 0 (n0 (% (println (inc 'Val)) 6))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue