Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 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