1 modula3 code (* Modula-3 *) MODULE M3Sample; (* file extension ".m3" *)
3 modula3 comment (* This is a comment *)
5 modula3 comment (* This is a comment ...
6 modula3 comment ... spanning more than one line *)
9 modula3 code sqString = 'this is a string within "a string" ...\n';
10 modula3 code dqString = "this is a string within 'a string' ...\n";
12 modula3 code END M3Sample.