view paper/src/Maybe.agda @ 69:bda11534296f

Update pdf
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Sat, 04 Feb 2017 16:34:14 +0900
parents c0693ad89f04
children
line wrap: on
line source

data Maybe {a} (A : Set a) : Set a where
  just    : (x : A) -> Maybe A
  nothing : Maybe A