pascalscript/Samples/Import/if.rops

9 lines
131 B
Plaintext
Raw Normal View History

Program IFSTest;
var
a: boolean;
Begin
a := true;
if a then begin ;end else
if a then begin ;end else;
writeln('5');
End.