DEBSOURCES
Skip Quicknav
sources / boo / 0.9.5~git20110729.r1.202a430-2 / lib / antlr-2.7.5 / examples / java / pascal / test / P_4_1.PAS
123456789101112
{ program 4.1 the compound statement } program beginend(output); var sum : integer; begin sum := 3 + 5; writeln(sum, -sum); end.