PROGRAM lots_of_comments;

BEGIN { This is the start of the main program }

(* This is a comment that is ignored by the Pascal compiler *)
{  This is also ignored }

  WRITELN('I am in Pascal school, Dad');      (* Comment *)
  WRITELN('All students are always broke');   {Comment}
(*
  WRITELN('Send money');
  WRITELN('Send money');
    *)
  WRITELN('I am really getting hungry');
END. (* This is the end of the main program *)
