Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

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

View file

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

View file

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

View file

@ -1,7 +1,7 @@
public program()
public Program()
{
while (true)
{
console.writeLine("spam")
Console.writeLine("spam")
}
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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