summaryrefslogtreecommitdiff
path: root/testcode/hello.pas
blob: 40c60057c0d24d1b45524b9c9726a4f38fffe31c (plain)
1
2
3
4
5
6
7
8
9
{ Hello World in Pascal, for testing SLOCCount.
  This is multi-line, testing curly braces. }
(* This is another multi-line comment.
   Here's another line. *)
program Hello;
begin     (* Main *)
   writeln ('Hello, world.')
end.      (* Main *)