June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -1,3 +1,19 @@
;Task:
Print out &nbsp; &nbsp; &nbsp; <big> '''SPAM''' </big> &nbsp; &nbsp; &nbsp; followed by a &nbsp; ''newline'' &nbsp; in an infinite loop.
;Related tasks:
* &nbsp; [[Loop over multiple arrays simultaneously]]
* &nbsp; [[Loops/Break]]
* &nbsp; [[Loops/Continue]]
* &nbsp; [[Loops/Do-while]]
* &nbsp; [[Loops/Downward for]]
* &nbsp; [[Loops/For]]
* &nbsp; [[Loops/For with a specified step]]
* &nbsp; [[Loops/Foreach]]
* &nbsp; [[Loops/Increment loop index within loop body]]
* &nbsp; [[Loops/Infinite]]
* &nbsp; [[Loops/N plus one half]]
* &nbsp; [[Loops/Nested]]
* &nbsp; [[Loops/While]]
<br><br>

View file

@ -0,0 +1,3 @@
/*Abhishek Ghosh, 24th October 2017*/
spam: puts("SPAM");
goto spam;

View file

@ -0,0 +1,3 @@
#!/usr/bin/env emacs --script
(while (princ "SPAM\n"))

View file

@ -0,0 +1,6 @@
component loops_infinite
export Executable
run() = while true do
println("SPAM")
end
end

View file

@ -0,0 +1,3 @@
while(1){
print "SPAM\n";
}

View file

@ -0,0 +1,3 @@
forever [
print "SPAM"
]