7 lines
106 B
Text
7 lines
106 B
Text
|
|
f : Int -> Int;
|
|
f x = let
|
|
g : Int -> Int;
|
|
g = (\y:Int. y+1);
|
|
in
|
|
g (g x);
|