Codebase list ohcount / 420c4794-75b8-4551-a2c5-42f5fb1d3fbf/main test / expected_dir / sample.obn
420c4794-75b8-4551-a2c5-42f5fb1d3fbf/main

Tree @420c4794-75b8-4551-a2c5-42f5fb1d3fbf/main (Download .tar.gz)

sample.obn @420c4794-75b8-4551-a2c5-42f5fb1d3fbf/mainraw · history · blame

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.