view list.agda @ 146:945f26ed12d5

assuing ∀{x : Carrier Mono } {f g : Carrier Mono -> Carrier Mono } -> (f x ≡ g x) -> ( f ≡ g )
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 15 Aug 2013 03:34:00 +0900
parents 302941542c0f
children
line wrap: on
line source

module list where

open import Data.List


postulate a : Set
postulate b : Set
postulate c : Set

l1 = [ a ]

l2 = ( a :: [] )