Last active
January 3, 2016 08:57
-
-
Save yamasushi/20edd22b4b5b1156281f 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
| #!/usr/bin/perl | |
| # https://gist.github.com/yamasushi/20edd22b4b5b1156281f | |
| use strict; | |
| use warnings; | |
| use utf8; | |
| binmode STDIN,":utf8"; | |
| binmode STDOUT,":utf8"; | |
| use List::Util qw(shuffle); | |
| print join '', shuffle(split //, (join '',<>)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment