mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2025-01-07 21:59:37 +03:00
9 lines
102 B
Idris
9 lines
102 B
Idris
foo : Int -> Int
|
|
foo x = x
|
|
|
|
bar : (Int -> Int
|
|
bar x = let y = 42 in y + x
|
|
|
|
baz : Int -> Int
|
|
baz x = x
|