doc-src/IsarAdvanced/Codegen/Thy/examples/arbitrary.ML
author wenzelm
Thu, 07 Dec 2006 00:42:04 +0100
changeset 21687 f689f729afab
parent 21190 08ec81dfc7fb
child 21993 4b802a9e0738
permissions -rw-r--r--
reorganized structure Goal vs. Tactic;

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*)