doc-src/IsarAdvanced/Codegen/Thy/examples/pick2.ML
changeset 24421 acfb2413faa3
parent 23850 f1434532a562
child 26318 967323f93c67
--- a/doc-src/IsarAdvanced/Codegen/Thy/examples/pick2.ML	Fri Aug 24 14:14:16 2007 +0200
+++ b/doc-src/IsarAdvanced/Codegen/Thy/examples/pick2.ML	Fri Aug 24 14:14:17 2007 +0200
@@ -1,7 +1,7 @@
 structure Nat = 
 struct
 
-datatype nat = Zero_nat | Suc of nat;
+datatype nat = Suc of nat | Zero_nat;
 
 fun less_nat n (Suc m) = less_eq_nat n m
   | less_nat n Zero_nat = false