Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,10 @@
'BEGIN' 'COMMENT' Loops DoWhile - Algol60 - 22/06/2018;
'INTEGER' I;
I:=0;
LOOP:
I:=I+1;
OUTINTEGER(1,I);
'IF' I=I'/'6*6 'THEN' 'GOTO' ENDLOOP;
'GOTO' LOOP;
ENDLOOP:
'END'

View file

@ -0,0 +1,14 @@
begin
integer i;
boolean another;
i := 0;
another := true;
for i := i + 1 while another do
begin
outinteger(1,i);
comment - repeat until i mod 6 = 0;
if i = (i div 6) * 6 then another := false;
end;
end