Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
BEGIN
|
||||
INTEGER i,j;
|
||||
i:=1; j:=2;
|
||||
OutText("i ");
|
||||
IF i=1 THEN OutInt(i,1);
|
||||
OutImage;
|
||||
OutInt(i,2); OutInt(j,2);
|
||||
IF i<j THEN OutText(" : i<j") ELSE OutText(" : i>=j");
|
||||
OutImage;
|
||||
IF i>=j THEN BEGIN
|
||||
OutText("i=");
|
||||
OutInt(i,5)
|
||||
END
|
||||
ELSE BEGIN
|
||||
OutText("j=");
|
||||
OutInt(j,5)
|
||||
END;
|
||||
OutImage
|
||||
END
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
BEGIN
|
||||
INTEGER i,j;
|
||||
SWITCH target:=L1,L2,L3;
|
||||
i:=1; j:=2;
|
||||
OutText("::");
|
||||
GOTO target(j);
|
||||
L1: OutText("AA");
|
||||
L2: OutText("BB");
|
||||
L3: OutText("CC");
|
||||
OutImage
|
||||
END
|
||||
Loading…
Add table
Add a link
Reference in a new issue