view list.agda @ 946:f8e6e9128f3d

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 18 May 2020 18:41:55 +0900 (2020-05-18)
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 :: [] )