Skip to content

Instantly share code, notes, and snippets.

@omegatakuma
Created December 14, 2011 11:10
Show Gist options
  • Save omegatakuma/1476160 to your computer and use it in GitHub Desktop.
Save omegatakuma/1476160 to your computer and use it in GitHub Desktop.
Hello,Worldを5回ループという簡単な仕事
putStrLn $ unlines $ replicate 5 $ "Hello,World"
putStrLn $ unwords $ replicate 5 $ "Hello,World¥n"
{ -unlinesとunwordsの違いは改行がつくかつかないかです。
  unlinesはつきますが、unwordsはつきません。— }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment