view Paper/src/Maybe.agda @ 12:e20725cd6d8a default tip

fix slides
author ryokka
date Mon, 21 May 2018 00:29:29 +0900
parents bf2887cd22c1
children
line wrap: on
line source

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