
f : Int -> Int;
f x = let 
        double : Int -> Int;
        double = \y:Int. y+y 
      in 
        double (x + 4);
