Oxford Oberon-2 Compiler: Difference between revisions

From Rosetta Code
Content added Content deleted
(obc)
 
(Correction from Spivey)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{implementation|Oberon-2}}
{{implementation|Oberon-2}}{{Compiler}}
OBC is the Oxford Oberon-2 Compiler.
OBC is the Oxford Oberon-2 Compiler.


It is written in [[OCaml]] (with C for the runtime) by Mike Spivey. It uses the Boehm garbage collector.
It is written in [[OCaml]] (with [[C]] for the runtime) by Mike Spivey. It formerly used the Boehm [[garbage collection|garbage collector]], but now includes its own storage manager.


==External Links==
==External Links==
* [http://spivey.oriel.ox.ac.uk/mike/obc/ Oxford Oberon-2 Compiler]
* [http://spivey.oriel.ox.ac.uk/mike/obc/ Oxford Oberon-2 Compiler]
* [http://www.hpl.hp.com/personal/Hans_Boehm/gc/ Boehm GC]

Latest revision as of 22:50, 10 January 2010

Oxford Oberon-2 Compiler is an implementation of Oberon-2. Other implementations of Oberon-2.
Oxford Oberon-2 Compiler is an example of a compiler. You may find the programming tasks that have been solved using it here.

OBC is the Oxford Oberon-2 Compiler.

It is written in OCaml (with C for the runtime) by Mike Spivey. It formerly used the Boehm garbage collector, but now includes its own storage manager.

External Links