mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 01:01:59 +03:00
11 lines
319 B
Plaintext
11 lines
319 B
Plaintext
1/1: Building Outdent (Outdent.idr)
|
|
Error: Not the end of a block entry, check indentation.
|
|
|
|
Outdent:4:22--4:28
|
|
1 | countdown : (secs: Nat) -> IO ()
|
|
2 | countdown Z = putStrLn "Lift off!"
|
|
3 | countdown (S secs) = do putStrLn (show (S secs))
|
|
4 | usleep 1000000
|
|
^^^^^^
|
|
|