mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-18 18:31:43 +03:00
e6121e0935
This is the result of running the command: $ find . -name '*.idr' -type f -exec sed -i -E 's/\s+$//' {} + I confirmed before running it that this would not affect any markdown formatting in documentation comments.
19 lines
333 B
Idris
19 lines
333 B
Idris
data Bool = False | True
|
|
data Nat = Z | S Nat
|
|
|
|
not : Bool -> Bool
|
|
not False = True
|
|
not True = False
|
|
|
|
isZero : Nat -> Bool
|
|
isZero Z = True
|
|
isZero (S k) = False
|
|
|
|
isOdd : Nat -> Bool
|
|
isOdd Z = False
|
|
isOdd (S k) = not (isOdd k)
|
|
|
|
testZ : Nat -> String
|
|
testZ x = if isZero x then "Zero" else
|
|
if isOdd x then "Odd" else "Even"
|