Codebase list ohcount / 81a9b407-9b9f-4b49-8972-ed3f6d30059f/main test / expected_dir / sample.obn
81a9b407-9b9f-4b49-8972-ed3f6d30059f/main

Tree @81a9b407-9b9f-4b49-8972-ed3f6d30059f/main (Download .tar.gz)

sample.obn @81a9b407-9b9f-4b49-8972-ed3f6d30059f/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.