Created
August 29, 2013 06:26
-
-
Save yuuki/6374773 to your computer and use it in GitHub Desktop.
Perlのこと何もわかってなかった。
6行目で怒られると思ってた
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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