Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    
    my %sizes = ('function' => 100, 'another function' => 200);
    
    say "The size of function is $sizes{'function'}";
    
  2. or download this
    The size of function is 100