annotate paper/src/agda-plus.agda.replaced @ 3:959f4b34d6f4

add final thesis
author soto
date Tue, 09 Feb 2021 18:44:53 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
1 _+_ : @$\mathbb{N}$@ @$\rightarrow$@ @$\mathbb{N}$@ @$\rightarrow$@ @$\mathbb{N}$@
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
2 zero + m = m
959f4b34d6f4 add final thesis
soto
parents:
diff changeset
3 suc n + m = suc (n + m)