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

fix slides
author ryokka
date Mon, 21 May 2018 00:29:29 +0900
parents bf2887cd22c1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
bf2887cd22c1 fix Paper
ryokka
parents:
diff changeset
1 data Maybe {a} (A : Set a) : Set a where
bf2887cd22c1 fix Paper
ryokka
parents:
diff changeset
2 just : (x : A) -> Maybe A
bf2887cd22c1 fix Paper
ryokka
parents:
diff changeset
3 nothing : Maybe A