doc-src/Codegen/Thy/examples/arbitrary.ML
author Cezary Kaliszyk <kaliszyk@in.tum.de>
Wed, 20 Jul 2011 16:14:49 +0200
changeset 43934 2108763f298d
parent 30226 2f4684e2ea95
permissions -rw-r--r--
Quotient Package: handle Bound variables in rep_abs_rsp_tac not only at top-level of the goal

structure Codegen = 
struct

val arbitrary_option : 'a option = NONE;

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

end; (*struct Codegen*)