(* a comment *) (* hello.p * our first pascal program for CS 313 * prints some random stuff * * compile using 'fpc hello.p' * results in executable 'hello', run using './hello' *) { usually use curly braces for comments } program helllllo; {program name is arbitrary} var a, i : integer; b, c : real; begin {main} a := 3; b := 5.5; writeln('hello there!!!'); writeln('a = ', a, ' b = ', b); for i := 3 to 10 do begin writeln('another line, i = ', i); writeln('bla bla'); end; end. {main}