Last active
October 20, 2019 22:25
-
-
Save tomcha/00a5e66bdd68663b6fe564454f456b5b to your computer and use it in GitHub Desktop.
fatcomma.pl
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
my ($a, $b, $c) = (1, 2, 3); | |
my ($aa, $bb, $cc) = (1 => 2 => 3); | |
print "$b\n"; | |
print "$cc\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment