view list.agda @ 316:7a3229b32b3c

Emp and Sum first try
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 16 Mar 2014 17:51:55 +0700
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 :: [] )