mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-11 02:01:36 +03:00
4f10bfcfd2
This is referred to in the documentation, so should be there
7 lines
96 B
Idris
7 lines
96 B
Idris
main : IO ()
|
|
main = putStrLn ?greeting
|
|
|
|
even : Nat -> Bool
|
|
even Z = True
|
|
even (S k) = ?even_rhs
|