]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/tests/fix00.cic
ocaml 3.09 transition
[helm.git] / helm / gTopLevel / tests / fix00.cic
1 let rec fact =
2   \lambda x:nat.
3     [\lambda x:nat. nat]
4     match x:nat with
5     [ O \Rightarrow 1
6     | (S (x: nat)) \Rightarrow (mult (S x) (fact x)) ]
7 in
8 (fact 4)