Skip to content

Instantly share code, notes, and snippets.

@Aha00a
Last active July 26, 2016 11:53
Show Gist options
  • Save Aha00a/65777f27cee828f3ea616c974f30d089 to your computer and use it in GitHub Desktop.
Save Aha00a/65777f27cee828f3ea616c974f30d089 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -w
use strict;
use warnings;
use utf8;
binmode STDOUT, ":utf8";
$|=1;
my @spin = split //, "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏";
my $i = 0;
while(1) {
print "$spin[$i++]\r";
$i %= $#spin;
sleep 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment