Created
December 6, 2016 23:47
-
-
Save puffnfresh/9563ff4d9657eedc0ffdc77faced679d to your computer and use it in GitHub Desktop.
Non-terminating IO data type in Agda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import IO.Primitive as Prim | |
open import Data.Unit | |
open import IO | |
open import Coinduction | |
nonTerminatingIO : IO ⊤ | |
nonTerminatingIO = ♯ nonTerminatingIO >> ♯ return tt | |
main : Prim.IO ⊤ | |
main = run nonTerminatingIO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment