doc-src/IsarAdvanced/Codegen/Thy/examples/fac_case.ML
author wenzelm
Mon, 14 Jul 2008 17:51:48 +0200
changeset 27579 97ce525f664c
parent 25160 72fcf0832cfe
permissions -rw-r--r--
end_theory: no result;

structure Nat = 
struct

datatype nat = Suc of nat | Zero_nat;

val one_nat : nat = Suc Zero_nat;

fun nat_case f1 f2 Zero_nat = f1
  | nat_case f1 f2 (Suc nat) = f2 nat;

fun plus_nat (Suc m) n = plus_nat m (Suc n)
  | plus_nat Zero_nat n = n;

fun times_nat (Suc m) n = plus_nat n (times_nat m n)
  | times_nat Zero_nat n = Zero_nat;

end; (*struct Nat*)

structure Codegen = 
struct

fun fac n =
  (case n of Nat.Zero_nat => Nat.one_nat
     | Nat.Suc m => Nat.times_nat n (fac m));

end; (*struct Codegen*)