mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 14:23:32 +03:00
7 lines
79 B
Idris
7 lines
79 B
Idris
foo5 : Int -> Int
|
|
foo5 x with (x + 1)
|
|
foo5 x | y = y + x
|
|
|
|
foo6 : Int
|
|
foo6 = 52
|