view Paper/src/NatAdd.agda @ 1:bf2887cd22c1

fix Paper
author ryokka
date Fri, 13 Apr 2018 19:47:50 +0900
parents
children
line wrap: on
line source

open import nat
module nat_add where
 
_+_ : Nat -> Nat -> Nat
O + m     = m
(S n) + m = S (n + m)