doc-src/IsarAdvanced/Codegen/Thy/examples/arbitrary.ML
author haftmann
Wed, 15 Nov 2006 17:05:37 +0100
changeset 21378 cedfce6fc725
parent 21190 08ec81dfc7fb
child 21993 4b802a9e0738
permissions -rw-r--r--
added evaluation oracle

structure ROOT = 
struct

structure Codegen = 
struct

val arbitrary_option : 'a option = NONE;

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

end; (*struct Codegen*)

end; (*struct ROOT*)