doc-src/Codegen/Thy/examples/arbitrary.ML
author paulson
Tue, 20 Oct 2009 16:32:51 +0100
changeset 33044 fd0a9c794ec1
parent 30226 2f4684e2ea95
permissions -rw-r--r--
Some new lemmas concerning sets

structure Codegen = 
struct

val arbitrary_option : 'a option = NONE;

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

end; (*struct Codegen*)