Skip to content

Instantly share code, notes, and snippets.

@autarch
Created December 25, 2013 17:38
Show Gist options
  • Save autarch/8125191 to your computer and use it in GitHub Desktop.
Save autarch/8125191 to your computer and use it in GitHub Desktop.
use v5.16;
my $int = 1;
for (124..132) {
say "$int >> $_ = ", $int >> $_;
}
------------------
1 >> 124 = 0
1 >> 125 = 0
1 >> 126 = 0
1 >> 127 = 0
1 >> 128 = 1
1 >> 129 = 0
1 >> 130 = 0
1 >> 131 = 0
1 >> 132 = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment