Idris2/tests/idris2/error/perror027/Outdent.idr

6 lines
189 B
Idris
Raw Normal View History

countdown : (secs: Nat) -> IO ()
countdown Z = putStrLn "Lift off!"
countdown (S secs) = do putStrLn (show (S secs))
usleep 1000000
countdown secs