-
-
Save ynonp/2486898 to your computer and use it in GitHub Desktop.
perl default var
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while (<>) { | |
chomp; | |
print; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.14; | |
my @arr = (10, 20, 30, 20, 25); | |
my $sum = 0; | |
foreach my $el (@arr) { | |
$sum += $el; | |
} | |
foreach (@arr) { | |
$sum += $_; | |
} | |
$sum += $_ for (@arr); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.14; | |
my @ext = qw/*.txt *.c/; | |
unlink glob for (@ext); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment