Last active
December 23, 2015 14:11
-
-
Save AyaMorisawa/6c1ac300bf70bbaa8c64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Random | |
main = do | |
gen <- getStdGen | |
let xs = ["hage", "はげ", "ハゲ", "ハゲ" ,"禿" ,"彡⌒ミ"] | |
mapM_ putStr [xs !! i | i <- randomRs (0, length xs - 1) gen] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool