view final_main/src/Maybe.agda @ 2:93d26c4576d3

add picture
author ryokka
date Thu, 01 Feb 2018 01:17:55 +0900
parents
children
line wrap: on
line source

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