view paper/src/CodeSegment.agda @ 118:05068a4d0b52

Fix specification
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 17:39:10 +0900
parents 5450e7ae5fa5
children
line wrap: on
line source

data CodeSegment {l1 l2 : Level} (I : Set l1) (O : Set l2) : Set (l ⊔ l1 ⊔ l2) where
  cs : (I -> O) -> CodeSegment I O