diff Paper/src/agda/plus.agda.replaced @ 1:a72446879486

Init paper
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Thu, 12 Jan 2023 20:28:50 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/src/agda/plus.agda.replaced	Thu Jan 12 20:28:50 2023 +0900
@@ -0,0 +1,6 @@
+plus : (x y : !$\mathbb{N}$!) !$\rightarrow$! !$\mathbb{N}$!
+plus x zero  = x
+plus x (suc y) = plus (suc x) y
+
+-- plus 10 20
+-- 30