Skip to content

Instantly share code, notes, and snippets.

@worthmine
Created March 24, 2019 06:01
Show Gist options
  • Save worthmine/83c70d665e329fa44e8b6979b1ddb494 to your computer and use it in GitHub Desktop.
Save worthmine/83c70d665e329fa44e8b6979b1ddb494 to your computer and use it in GitHub Desktop.
declaration local & our at same line
use feature qw(say);
use strict;
use warnings;
for ( local our $n = 0; $n < 10; $n++ ) {
say $n;
}
#0
#1
#2
#3
#4
#5
#6
#7
#8
#9
say our $n;
#10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment