view Paper/src/NatAdd.agda @ 14:393c839f987b default tip

DONE
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Sat, 08 Jan 2022 12:41:39 +0900
parents c59202657321
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)