doc-src/Codegen/Thy/examples/class.ocaml
author boehmes
Mon, 03 Jan 2011 16:22:08 +0100
changeset 41426 09615ed31f04
parent 30226 2f4684e2ea95
permissions -rw-r--r--
re-implemented support for datatypes (including records and typedefs); added test cases for datatypes, records and typedefs

module Nat = 
struct

type nat = Suc of nat | Zero_nat;;

end;; (*struct Nat*)

module Codegen = 
struct

type 'a null = {null : 'a};;
let null _A = _A.null;;

let rec head _A = function x :: xs -> x
                  | [] -> null _A;;

let rec null_option = None;;

let null_optiona () = ({null = null_option} : ('a option) null);;

let rec dummy
  = head (null_optiona ()) [Some (Nat.Suc Nat.Zero_nat); None];;

end;; (*struct Codegen*)