1 modula2 code IMPLEMENTATION MODULE Sample; (* in Modula-2 *)
3 modula2 comment (* This is a comment *)
5 modula2 comment (* This is a comment ...
6 modula2 comment ... spanning more than one line *)
9 modula2 code sqString = 'this is a string within "a string" ...';
10 modula2 code dqString = "this is a string within 'a string' ...";
12 modula2 code END Sample.