Snippets

sironekotoro tanakh.pl (For windows)

Created by sironekotoro
# cf. https://twitter.com/mattn_jp/status/987128843633770496
# cf. https://twitter.com/dankogai/status/987145070385160192

# Windows
use 5.024;
use warnings;
use Encode;
use utf8;

$| = 1;

my $hoge = <<EOF;
    (´・_・`)´・_・`)
     (´・_・`)_・`)
      (´・_・`)`)
      ((´・_・`)
     (´・(´・_・`)
     (´・_(´・_・`)
    (´・_・`)´・_・`)
     (´・_・`)_・`)
      (´・_・`)`)
      (´・_・`))
       ((´・_・`)
      (´・(´・_・`)
     (´・_(´・_・`)
EOF

my @a = split /\n/, $hoge;

foreach my $str (@a) {
    sleep 1;
    print encode( 'cp932', $str ), "     ", "\r";
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.