mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 14:23:32 +03:00
9 lines
103 B
Idris
9 lines
103 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
|