doc-src/IsarAdvanced/Codegen/Thy/examples/arbitrary.ML
author haftmann
Thu, 20 Mar 2008 12:01:09 +0100
changeset 26347 105f55201077
parent 23850 f1434532a562
permissions -rw-r--r--
tuned proofs

structure Codegen = 
struct

val arbitrary_option : 'a option = NONE;

fun dummy_option [] = arbitrary_option
  | dummy_option (x :: xs) = SOME x;

end; (*struct Codegen*)