packages feed

Agda-2.3.2.2: examples/simple-lib/Lib/Maybe.agda

module Lib.Maybe where

data Maybe (A : Set) : Set where
  nothing : Maybe A
  just    : A -> Maybe A

{-# COMPILED_DATA Maybe Maybe Nothing Just #-}