doc-src/Codegen/Thy/examples/arbitrary.ML
author huffman
Sat, 20 Aug 2011 15:19:35 -0700
changeset 44350 63cddfbc5a09
parent 30226 2f4684e2ea95
permissions -rw-r--r--
replace lemma realpow_two_diff with new lemma square_diff_square_factored

structure Codegen = 
struct

val arbitrary_option : 'a option = NONE;

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

end; (*struct Codegen*)