annotate Paper/src/Maybe.agda.replaced @ 11:ae8ea72d5c41

ADD スライドを作成
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Wed, 25 May 2022 18:31:17 +0900
parents 14a0e409d574
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
14a0e409d574 ADD fast commit
soto <soto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 data Maybe {a} (A : Set a) : Set a where
14a0e409d574 ADD fast commit
soto <soto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 just : (x : A) !$\rightarrow$! Maybe A
14a0e409d574 ADD fast commit
soto <soto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 nothing : Maybe A