Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,3 @@
loop
Put_Line("SPAM");
end loop;

View file

@ -0,0 +1,10 @@
IDENTIFICATION DIVISION.
PROGRAM-ID. Spam.
PROCEDURE DIVISION.
PERFORM UNTIL 1 <> 1
DISPLAY "SPAM"
END-PERFORM
GOBACK
.

View file

@ -0,0 +1 @@
while true do writeln("SPAM");

View file

@ -0,0 +1,2 @@
(while t
(message "SPAM"))

View file

@ -0,0 +1,3 @@
while 1 do
puts(1, "SPAM\n")
end while

View file

@ -0,0 +1,2 @@
while (true)
Sys.println("SPAM");

View file

@ -0,0 +1,3 @@
while (true) {
println 'SPAM'
}

View file

@ -0,0 +1,3 @@
for (;;) {
println 'SPAM'
}

View file

@ -0,0 +1 @@
(forever (print "SPAM"))

View file

@ -0,0 +1,8 @@
MODULE InfiniteLoop;
IMPORT
Out;
BEGIN
WHILE TRUE DO
Out.String("SPAM");Out.Ln
END
END InfiniteLoop.

View file

@ -0,0 +1,8 @@
MODULE InfiniteLoop;
IMPORT
Out;
BEGIN
LOOP
Out.String("SPAM");Out.Ln
END
END InfiniteLoop.

View file

@ -0,0 +1,3 @@
for () {
"SPAM"
}

View file

@ -0,0 +1,3 @@
while true {
Js.log("SPAM")
}

View file

@ -0,0 +1,4 @@
let rec inf_loop = () => {
Js.log("SPAM")
inf_loop()
}

View file

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

View file

@ -0,0 +1 @@
until [print "SPAM" false]

View file

@ -0,0 +1 @@
while[true][print "SPAM"]

View file

@ -0,0 +1 @@
forever { print "SPAM" }

View file

@ -0,0 +1,3 @@
lblstart
printLine SPAM
GOTO start

View file

@ -0,0 +1,3 @@
Do
WScript.Echo("SPAM")
Loop