f x = let g y = x * x + y in g 3 + g 4

이걸 이렇게 바꿔야 됨

f x = let _1 = x * x in let g y = _1 + y in g 3 + g 4

- dc official App