Codebase list ohcount / run/8fccc97f-1091-4606-8a80-1b8fb386766a/main test / expected_dir / sample.m3
run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

Tree @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main (Download .tar.gz)

sample.m3 @run/8fccc97f-1091-4606-8a80-1b8fb386766a/mainraw · history · blame

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