annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
54
ef9730f3db8d Writing agda description ......
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 module Sort (A : Set) (_<_ : A -> A -> Bool) where
ef9730f3db8d Writing agda description ......
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 sort : List A -> List A
ef9730f3db8d Writing agda description ......
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 sort = ...
ef9730f3db8d Writing agda description ......
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
ef9730f3db8d Writing agda description ......
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 open import Sort Nat Nat._<_ as N
ef9730f3db8d Writing agda description ......
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 open import Sort Bool Bool._<_ as B