Mercurial > hg > Papers > 2018 > nozomi-master
view paper/src/NatAdd.agda @ 100:ebe838b83ada
Self review
author | atton <atton@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 11:52:20 +0900 |
parents | 70bea06ebdf3 |
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)