Skip to content

Instantly share code, notes, and snippets.

@massat
Created February 11, 2012 03:09
Show Gist options
  • Save massat/1795655 to your computer and use it in GitHub Desktop.
Save massat/1795655 to your computer and use it in GitHub Desktop.
perl... #perlはじめました ref: http://qiita.com/items/2353
/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