Skip to content

Instantly share code, notes, and snippets.

@tsucchi
Created September 12, 2015 08:22
Show Gist options
  • Save tsucchi/7c196ba255069461e70c to your computer and use it in GitHub Desktop.
Save tsucchi/7c196ba255069461e70c to your computer and use it in GitHub Desktop.
score.pl でやることののはじめの一歩
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
my $papix = {
name => 'papix',
affiliation => 'namba.pm',
perl => 60,
python => 50,
ruby => 50,
php => 80,
binary => 30,
};
$papix->{sum} = 270;
print Dumper($papix);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment