Idris2/tests/idris2/perror027/Outdent.idr

6 lines
189 B
Idris

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