Skip to content

Instantly share code, notes, and snippets.

@hisaichi5518
Last active December 18, 2015 20:29
Show Gist options
  • Select an option

  • Save hisaichi5518/5840700 to your computer and use it in GitHub Desktop.

Select an option

Save hisaichi5518/5840700 to your computer and use it in GitHub Desktop.
use Data::Dumper;
use Data::Dummy;
my %hash = (
id => dummy_int([1..100]),
name => dummy_str(["あ".."ん"]),
name_long => dummy_str(["あ".."ん"], size => 50),
);
my @array = (
dummy_int([1..100]),
dummy_int([100..200]),
dummy_int([300..400]),
dummy_int([500..600]),
dummy_bigint(size => 20),
);
print Dumper \%hash;
print Dumper \@array;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment