Skip to content

Instantly share code, notes, and snippets.

@hisaichi5518
Created January 28, 2014 12:15
Show Gist options
  • Select an option

  • Save hisaichi5518/8666627 to your computer and use it in GitHub Desktop.

Select an option

Save hisaichi5518/8666627 to your computer and use it in GitHub Desktop.
ウェイ
use strict;
use warnings;
sub hoge {
my $test = {};
return {
hoge => fuga() # ここに,がない
%{$test},
}
}
sub fuga {
+{}
}
use Data::Dumper;
warn Dumper hoge();
__END__
Odd number of elements in anonymous hash at /Users/hisaichi5518/projects/kuwata/test.pl line 7.
$VAR1 = {
'hoge' => '140683826447000'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment