mirror of
https://git8.cs.fau.de/theses/bsc-leon-vatthauer.git
synced 2024-05-31 07:28:34 +02:00
7 lines
180 B
Text
7 lines
180 B
Text
mutual
|
||
data Delay (A : Set) : Set where
|
||
now : A → Delay A
|
||
later : Delay′ A → Delay A
|
||
record Delay′ (A : Set) : Set where
|
||
coinductive
|
||
field force : Delay A
|