Codebase list ohcount / c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main test / expected_dir / sample.ob2
c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main

Tree @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main (Download .tar.gz)

sample.ob2 @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/mainraw · history · blame

oberon	code	(* Oberon-2 *) MODULE OberonSample; (* file extension ".ob2" *)
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.