Skip to content

Instantly share code, notes, and snippets.

@tomcha
Last active October 20, 2019 22:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomcha/00a5e66bdd68663b6fe564454f456b5b to your computer and use it in GitHub Desktop.
Save tomcha/00a5e66bdd68663b6fe564454f456b5b to your computer and use it in GitHub Desktop.
fatcomma.pl
#!/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