DESCR 811 B

123456789101112131415161718
  1. Oberon-2 is clean and simple programming language.
  2. This is portable compiler that translates Oberon-2 into bytecode, which
  3. can be either interpreted or dynamically translated into machine code.
  4. Dynamic translation uses a portable interface modelled on the one in GNU
  5. Lightning, but is so far implemented only on x86 machines. The
  6. implementation includes a full garbage collector, and comes with
  7. profiling tools and a simple GUI debugger.
  8. This implementation of the Oberon-2 language does not include a version
  9. of the Oberon-2 operating system and programming environment; instead,
  10. programs are edited with the tools of the host operating system and
  11. compiled into executables that run like other programs on the host
  12. system.
  13. The compiler is written in Objective Caml, and the runtime system is
  14. written in C.