Skip to content

Instantly share code, notes, and snippets.

@hitode909
Created June 11, 2014 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitode909/04c80636986497d03ad7 to your computer and use it in GitHub Desktop.
Save hitode909/04c80636986497d03ad7 to your computer and use it in GitHub Desktop.
encode_utf8しまくるやつ
use strict;
use warnings;
use Encode qw(encode_utf8);
use Time::HiRes qw/usleep/;
my ($value) = @ARGV;
while(1) {
print "$value\n";
usleep 100000;
$value = encode_utf8 $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment