fork(1) download
  1. #!/usr/bin/perl
  2. # your code goes here
  3.  
  4. use Data::Dumper;
  5.  
  6. my $hash = {
  7. soybeans=>1,
  8. chickpeas=>2,
  9. };
  10.  
  11. print Dumper(values %$hash);
Success #stdin #stdout 0.02s 6628KB
stdin
Standard input is empty
stdout
$VAR1 = 2;
$VAR2 = 1;