view final_pre/src/csds.agda @ 8:c8bfe73b2faf

fix final_pre
author ryokka
date Tue, 20 Feb 2018 17:06:05 +0900
parents
children
line wrap: on
line source

record ds0 : Set where
field
a : Int
b : Int

record ds1 : Set where
field
c : Int

cs2 : CodeSegment ds1 ds1
cs2 = cs id

cs1 : CodeSegment ds1 ds1
cs1 = cs (\d -> goto cs2 d)

cs0 : CodeSegment ds0 ds1
cs0 = cs (\d -> goto cs1 (record {c = (ds0.a d) + (ds0.b d)}))

main : ds1
main = goto cs0 (record {a = 100 ; b = 50})