Skip to content

Instantly share code, notes, and snippets.

@andrewsolomon
Created May 21, 2017 17:58
Show Gist options
  • Save andrewsolomon/62e1eed0b2756fa29e466b3afca71854 to your computer and use it in GitHub Desktop.
Save andrewsolomon/62e1eed0b2756fa29e466b3afca71854 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dump 'pp';
use feature 'say';
sub list_to_hash {
return { @_ };
}
my $rh = list_to_hash(@ARGV);
say pp($rh);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment