DEBSOURCES
Skip Quicknav
sources / lazarus / 1.6.2%2Bdfsg-2 / components / PascalScript / Samples / Kylix / 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.