Created
November 12, 2014 03:55
-
-
Save tnoda/2f399beadd2202d4f8bb to your computer and use it in GitHub Desktop.
The original version => https://twitter.com/yagiyyyy/status/473405016540053504, @shobochim => https://gist.github.com/syobochim/c7f324a227341fdaaee0
This file contains 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
(let [v ["ジョ" "ン" "ボ" "ヴィ"] | |
a (reverse ["ジョン" "ボン" "ジョヴィ"]) | |
s (->> (repeatedly #(str (rand-nth v) (rand-nth v))) | |
(reductions #(cons %2 %) []) | |
(drop-while #(not= a (take 3 %))) | |
first)] | |
(println (->> (reverse s) | |
(interpose "・") | |
(apply str)) | |
"\n" | |
(count s) | |
"Bon Jovis | |
_人人人人人人人人人人人人人人_ | |
> You Give Love a Bad Name < | |
 ̄Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y ̄")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment