Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/Pascal Script for Delphi/Import/if.rops

9 lines
131 B
Plaintext
Raw Permalink 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.