view list.agda @ 778:06388660995b

fix applicative for Agda version 2.5.4.1
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 26 Sep 2018 20:17:09 +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 :: [] )