view paper/src/MetaMetaDataSegment.agda @ 71:b0cfef1cd89f

Add sample source
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 06 Feb 2017 10:15:16 +0900
parents 6d8825f3b051
children ebe838b83ada
line wrap: on
line source

...
open import subtype Context as N

record Meta : Set where
  field
    context : Context
    c'      : Int
    next    : N.CodeSegment Context Context

open import subtype Meta as M
...