Open nleobandung opened 3 hours ago
In Lecture 3 Notes Functional Programming 1, I believe the Calling Functions Challenge code block is incorrect with function f's type declaration.
f :: Double -> Double f x y = x * y g :: Double -> Double g a = __________________
where it should be
f :: Double -> Double -> Double
made a PR for this: https://github.com/UCLA-CS-131/fall-24-website/pull/6
In Lecture 3 Notes Functional Programming 1, I believe the Calling Functions Challenge code block is incorrect with function f's type declaration.
where it should be