Skip to content

Instantly share code, notes, and snippets.

@dameninngenn
Created March 26, 2014 05:58
Show Gist options
  • Save dameninngenn/9777569 to your computer and use it in GitHub Desktop.
Save dameninngenn/9777569 to your computer and use it in GitHub Desktop.
流れソイヤ
#!/usr/bin/env perl
use strict;
use warnings;
use utf8;
use Time::HiRes qw( usleep );
for my $i ( 1..30 ) {
print "\033[2J";
print "\033[0;0H";
for ( 1..$i ) {
print "\n";
}
my $soiya = ' 'x$i . 'soiya!';
print $soiya;
print "\n";
usleep(33333);
}
print "\033[0;0H";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment