DEBSOURCES
Skip Quicknav
sources / lazarus / 1.2.4%2Bdfsg2-1 / components / PascalScript / Samples / Import / if.rops
123456789
Program IFSTest; var a: boolean; Begin a := true; if a then begin ;end else if a then begin ;end else; writeln('5'); End.