src/HOL/IOA/meta_theory/Option.thy
author lcp
Tue, 25 Apr 1995 11:14:03 +0200
changeset 1072 0140ff702b23
parent 1052 e044350bfa52
permissions -rw-r--r--
updated version

(*  Title:      Option.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   1994  TU Muenchen

Datatype 'a option
*)

Option = Arith +
datatype 'a option = None | Some ('a)
end