1 oberon code (* Oberon *) MODULE OberonSample; (* file extension ".obn" *)
3 oberon comment (* This is a comment *)
5 oberon comment (* This is a comment ...
6 oberon comment ... spanning more than one line *)
9 oberon code sqString* = 'this is a string within "a string" ...';
10 oberon code dqString* = "this is a string within 'a string' ...";
12 oberon code END OberonSample.