Created
February 11, 2012 03:09
-
-
Save massat/1795655 to your computer and use it in GitHub Desktop.
perl... #perlはじめました ref: http://qiita.com/items/2353
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
/Users/massat% perl -MData::Dumper -e 'my @array = [1,2,3]; warn Dumper @array; foreach (@array) { warn Dumper $_ };' | |
$VAR1 = [ | |
1, | |
2, | |
3 | |
]; | |
$VAR1 = [ | |
1, | |
2, | |
3 | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment