Mercurial > hg > Papers > 2018 > nozomi-master
view paper/src/Maybe.agda @ 109:f6d00a13f923
Add ()
author | atton |
---|---|
date | Mon, 13 Feb 2017 14:11:30 +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