하스켈 컴파일러는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로바꾼다
댓글 0