view Paper/src/Maybe.agda @ 28:423f59b098ac

Add svg
author soto <soto@cr.ie.u-ryukyu.ac.jp>
date Wed, 15 Feb 2023 17:18:23 +0900
parents a72446879486
children
line wrap: on
line source

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