12 lines
175 B
Text
12 lines
175 B
Text
|
|
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
|