Skip to content

Instantly share code, notes, and snippets.

@AyaMorisawa
Last active December 23, 2015 14:11
Show Gist options
  • Save AyaMorisawa/6c1ac300bf70bbaa8c64 to your computer and use it in GitHub Desktop.
Save AyaMorisawa/6c1ac300bf70bbaa8c64 to your computer and use it in GitHub Desktop.
import System.Random
main = do
gen <- getStdGen
let xs = ["hage", "はげ", "ハゲ", "ハゲ" ,"禿" ,"彡⌒ミ"]
mapM_ putStr [xs !! i | i <- randomRs (0, length xs - 1) gen]
Copy link

ghost commented Dec 22, 2015

Cool

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment