view paper/src/AgdaImplicitId.agda @ 86:e437746d6038

Fix lstinput
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Thu, 09 Feb 2017 15:40:11 +0900
parents 10a550bf7e4a
children
line wrap: on
line source

id : {A : Set} -> A -> A
id x = x

id-zero : Nat
id-zero = id zero

id' : {A : Set} -> A -> A
id' {A} x = x

id-true : Bool
id-true = id {Bool} true