Codebase list ohcount / 85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main test / expected_dir / sampleImp.mod
85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main

Tree @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main (Download .tar.gz)

sampleImp.mod @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/mainraw · history · blame

modula2	code	IMPLEMENTATION MODULE Sample; (* in Modula-2 *)
modula2	blank	
modula2	comment	(* This is a comment *)
modula2	blank	
modula2	comment	(* This is a comment ...
modula2	comment	   ... spanning more than one line *)
modula2	blank	
modula2	code	CONST
modula2	code	  sqString = 'this is a string within "a string" ...';
modula2	code	  dqString = "this is a string within 'a string' ...";
modula2	blank	
modula2	code	END Sample.