[Oberon] Oberon and closures

B. Smith-Mannschott benpsm at gmail.com
Thu Oct 30 18:00:28 MET 2008


On Oct 30, 2008, at 09:16, Bob Walkden wrote:

>>> So, yes, you can create a closure in Oberon.
>>
>> Well, no, not really.  The Module being a single giant closure over
>> all the procedures defined in it is *not* what is generally meant by
>> "closure".  In particular, languages which support closures generally
>> allow something like this:
>>
>> MODULE Example;
>> (* my oberon's a little rusty *)
>> TYPE
>>   Printer = PROCEDURE();
>> VAR
>>   p, q: Printer;
>>
>> PROCEDURE CreateNumberPrinter(n: INTEGER): Printer;
>>     PROCEDURE PrintingProcedure;
>>     BEGIN Out.WriteInt(n)
>>     END PrintingProcedure;
>> BEGIN
>>     RETURN PrintingProcedure
>> END CreateNumberPrinter;
>>
>> BEGIN
>>   p := CreateNumberPrinter(1);
>>   q := CreateNumberPrinter(2);
>>   p; (* prints 1 *)
>>   q; (* prints 2 *)
>> END Example;
>>
>> Note that each invocation of CreateNumberPrinter creates a new  
>> closure
>> over the nested procedure PrintingProcedure. In fact the fact that
>> Pascal/Modula/Oberon only allows top-level procedures as procedure
>> values appears to be a direct result of the fact that the language
>> doesn't support proper closures. (In order to support closures as
>> above you need something more involved than a simple stack as an
>> instance of PrintingProcedure needs to find its "n", even after the
>> CreateNumberPrinter that created it is no longer active on the  
>> stack).
>>
>
> "the language doesn't support proper closures"
>
> What are the benefits of supporting this? It doesn't feel to me as  
> though it is
> in 'the spirit of Oberon'. It feels like the kind of accident  
> waiting to happen
> that Prof. Wirth preferred to avoid.

Yes supporting full closures would have complicated the compiler and/or
the runtime system considerably and wouldn't have been in Wirth's style.
By choosing not to indulge in this feature he was able to keep his  
languages
and compilers far smaller and simpler than they otherwise would have  
been.

There's no law that says that every language must support closures (or
tail call eliminiation, or mult-methods, continuations, or ...)  and I  
for
one am glad that Wirth chose to keep Oberon simple.

// Ben


More information about the Oberon mailing list