doc-src/Codegen/Thy/examples/arbitrary.ML
author huffman
Wed, 10 Aug 2011 16:35:50 -0700
changeset 44140 2c10c35dd4be
parent 30226 2f4684e2ea95
permissions -rw-r--r--
remove several redundant and unused theorems about derivatives

structure Codegen = 
struct

val arbitrary_option : 'a option = NONE;

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

end; (*struct Codegen*)