Skip to content

Instantly share code, notes, and snippets.

@kenjiskywalker
Created May 1, 2012 00:42
Show Gist options
  • Save kenjiskywalker/2564019 to your computer and use it in GitHub Desktop.
Save kenjiskywalker/2564019 to your computer and use it in GitHub Desktop.
Data::Printer
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Printer;
my @hoge = qw(foo bar baz);
p @hoge;
[
[0] "foo",
[1] "bar",
[2] "baz"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment