DEBSOURCES
Skip Quicknav
sources / antlr / 2.7.7%2Bdfsg-14 / 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.