bmiTell :: => Double -> String
bmiTell bmi
| bmi <= 18.5 = "You're underweight, you emo, you!"
| bmi <= 25.0 = "You're supposeldly normal. Pffft, I bet you're ugly!"
| bmi <= 30.0 = "You're fat! Lose some weight, fatty!"
| otherwise = "You are a whale, congratulations!"
这段代码给了我一个错误,“输入'=>'时解析错误”我不知道为什么。有什么帮助吗?谢谢你 !