view list.agda @ 347:87ad542e4145

list try ..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 22 Apr 2014 23:31:19 +0900 (2014-04-22)
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 :: [] )