makeMistakesToLearnHaskell icon indicating copy to clipboard operation
makeMistakesToLearnHaskell copied to clipboard

課題5で、getLineする順番を間違えた場合のヒントを追加する

Open igrep opened this issue 6 years ago • 0 comments

do
  principal <- getLine
  interestRate <- getLine
  years <- getLine

と書くべきところを、例えば、

do
  interestRate <- getLine
  principal <- getLine
  years <- getLine

などと書いてしまった場合に、ヒントを出す。

igrep avatar Dec 26 '18 08:12 igrep