view IdAgda.agda @ 2:27e2035653ce default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 12 Dec 2019 17:41:03 +0900
parents
children
line wrap: on
line source

module IdAgda where

  idAgda : ∀ {A : Set} → A → A
  idAgda x = x

  {-# COMPILE GHC idAgda as idAgdaFromHs #-}