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

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

module Sort (A : Set) (_<_ : A -> A -> Bool) where
  sort : List A -> List A
  sort = ...

open import Sort Nat  Nat._<_  as N
open import Sort Bool Bool._<_ as B