Codebase list ohcount / a828f03c-a62e-49d7-b2ec-6e6df59903d2/main test / expected_dir / sample.obn
a828f03c-a62e-49d7-b2ec-6e6df59903d2/main

Tree @a828f03c-a62e-49d7-b2ec-6e6df59903d2/main (Download .tar.gz)

sample.obn @a828f03c-a62e-49d7-b2ec-6e6df59903d2/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.