Skip to content

Instantly share code, notes, and snippets.

@mateu
Created June 13, 2009 14:41
Show Gist options
  • Save mateu/129272 to your computer and use it in GitHub Desktop.
Save mateu/129272 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use 5.010;
my $var;
$var //= 2;
say $var;
my @array_multiplied = qw(3 5 7) x 3;
say @array_multiplied;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment