view src/list.agda @ 949:ac53803b3b2a

reorganization for apkg
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 21 Dec 2020 16:40:15 +0900 (2020-12-21)
parents list.agda@302941542c0f
children f683d96fbc93
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 :: [] )