Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created January 5, 2024 14:04
Show Gist options
  • Save melezhik/4554650c610a73ef9c5730cb13f4722c to your computer and use it in GitHub Desktop.
Save melezhik/4554650c610a73ef9c5730cb13f4722c to your computer and use it in GitHub Desktop.
5500
my @map = [[11, 12], [31,32]];
my @newrow = [21, 22];
@map.splice(1, 0, @newrow);
say @map.perl;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment