We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
今日の社内勉強会でのフィードバックから。 main = の後にインデントで示したことに激しい違和感を覚えたそうです。 確かにPythonとか使ったことなければ何じゃこりゃ、となるわな。
main =
おそらく下記の段落の前後か途中で解説するのがよいと思われる。
先ほどの間違った例と比べて違うのは、main =の後にdoが書いてあるかないか、それだけです。 後はほかのよくあるプログラミング言語と似たように、putStrLn "newline here:"などの連続して実行したい命令を改行で切って並べれば、並べた命令を続けて実行できます。 それ故に書き忘れてしまい、先ほどのようなわかりづらいエラーになってしまうことも多いので、ご注意ください。
do
putStrLn "newline here:"
The text was updated successfully, but these errors were encountered:
igrep
No branches or pull requests
今日の社内勉強会でのフィードバックから。
main =
の後にインデントで示したことに激しい違和感を覚えたそうです。確かにPythonとか使ったことなければ何じゃこりゃ、となるわな。
おそらく下記の段落の前後か途中で解説するのがよいと思われる。
The text was updated successfully, but these errors were encountered: