4 lines
56 B
Text
4 lines
56 B
Text
|
fn id x = x
|
||
|
fn plus x y = x + y
|
||
|
fn main = plus (id 2) 7
|