type: string を int に転送するコードは次のとおりです。
get_int :: IO Int
get_int = do num <-getLine
return (read num :: Int)
しかし、GHCI で実行すると、エラーが表示されます: Not in scope : 'num'. おそらく「合計」を意味するのはなぜですか?そのコードを修正する方法。ありがとう!
type: string を int に転送するコードは次のとおりです。
get_int :: IO Int
get_int = do num <-getLine
return (read num :: Int)
しかし、GHCI で実行すると、エラーが表示されます: Not in scope : 'num'. おそらく「合計」を意味するのはなぜですか?そのコードを修正する方法。ありがとう!