Family Day update
This commit is contained in:
parent
aac6731f2c
commit
9ad63ea473
2442 changed files with 39761 additions and 8255 deletions
3
Task/Loops-Infinite/Common-Lisp/loops-infinite-2.lisp
Normal file
3
Task/Loops-Infinite/Common-Lisp/loops-infinite-2.lisp
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(do () ; Not initialization
|
||||
(nil) ; Not break condition
|
||||
(print "SPAM")) ; On every loop as requested
|
||||
2
Task/Loops-Infinite/Haxe/loops-infinite.haxe
Normal file
2
Task/Loops-Infinite/Haxe/loops-infinite.haxe
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
while (true)
|
||||
Sys.println("SPAM");
|
||||
|
|
@ -1,3 +1,2 @@
|
|||
int main(){
|
||||
while(1) write("SPAM\n");
|
||||
}
|
||||
while(1)
|
||||
write("SPAM\n");
|
||||
|
|
|
|||
3
Task/Loops-Infinite/Robotic/loops-infinite.robotic
Normal file
3
Task/Loops-Infinite/Robotic/loops-infinite.robotic
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
: "infinite_loop"
|
||||
* "SPAM"
|
||||
goto "infinite_loop"
|
||||
Loading…
Add table
Add a link
Reference in a new issue