annotate paper/src/AgdaPlus.agda @ 100:ebe838b83ada

Self review
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sun, 12 Feb 2017 11:52:20 +0900
parents 6318c8f4bb8c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51
6318c8f4bb8c Writing Agda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 _+_ : Nat -> Nat -> Nat
6318c8f4bb8c Writing Agda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 zero + m = m
6318c8f4bb8c Writing Agda description
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 suc n + m = suc (n + m)