view Paper/src/agda/plus.agda.replaced @ 32:4915eaa51ee0 default tip

Add front
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Thu, 23 Feb 2023 18:39:56 +0900
parents a72446879486
children
line wrap: on
line source

plus : (x y : !$\mathbb{N}$!) !$\rightarrow$! !$\mathbb{N}$!
plus x zero  = x
plus x (suc y) = plus (suc x) y

-- plus 10 20
-- 30