Codebase list ohcount / d62f219c-a984-415f-b69c-f521b00b8f15/main test / expected_dir / sampleImp.mod
d62f219c-a984-415f-b69c-f521b00b8f15/main

Tree @d62f219c-a984-415f-b69c-f521b00b8f15/main (Download .tar.gz)

sampleImp.mod @d62f219c-a984-415f-b69c-f521b00b8f15/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.