Skip to content

Instantly share code, notes, and snippets.

@Siddhant
Created May 10, 2012 23:29
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 Siddhant/2656561 to your computer and use it in GitHub Desktop.
Save Siddhant/2656561 to your computer and use it in GitHub Desktop.
my $n = 45657;
my $ns = $n.Str;
my @digits = $ns.split('');
@digits = @digits.push(@digits.shift); #trying to rotate the digits; expected: 5 6 5 7 4
say @digits;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment