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

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

sample.obn @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main

8e3aae6
 
 
 
 
 
 
 
 
 
 
 
oberon	code	(* Oberon *) MODULE OberonSample; (* file extension ".obn" *)
oberon	blank	
oberon	comment	(* This is a comment *)
oberon	blank	
oberon	comment	(* This is a comment ...
oberon	comment	   ... spanning more than one line *)
oberon	blank	
oberon	code	CONST
oberon	code	  sqString* = 'this is a string within "a string" ...';
oberon	code	  dqString* = "this is a string within 'a string' ...";
oberon	blank	
oberon	code	END OberonSample.