Skip to content

Instantly share code, notes, and snippets.

@yuuki
Created August 29, 2013 06:26
Show Gist options
  • Save yuuki/6374773 to your computer and use it in GitHub Desktop.
Save yuuki/6374773 to your computer and use it in GitHub Desktop.
Perlのこと何もわかってなかった。 6行目で怒られると思ってた
#!/usr/bin/env perl
use strict;
use warnings;
my $hoge = undef;
$hoge->{key} = 10;
use Data::Dumper;
local $Data::Dumper::Indent = 1;
local $Data::Dumper::Terse = 1;
warn Dumper $hoge;
# {
# 'key' => 10
# }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment