Data update

This commit is contained in:
Ingy döt Net 2023-08-01 14:30:30 -07:00
parent 07c7092a52
commit 61b93a2cd1
313 changed files with 6160 additions and 346 deletions

View file

@ -0,0 +1 @@
while(1) io::printn("SPAM");

View file

@ -0,0 +1 @@
for(;;) io::printn("SPAM");

View file

@ -0,0 +1 @@
do { io::printn("SPAM"); } while(1);

View file

@ -0,0 +1,6 @@
switch (1)
{
case 1:
io::printn("SPAM");
nextcase 1;
}