mirror of
https://git8.cs.fau.de/theses/bsc-leon-vatthauer.git
synced 2024-05-31 07:28:34 +02:00
8 lines
180 B
Text
8 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
|