Help for this page

Select Code to Download


  1. or download this
    %users = (
        john  => { count => 1 },
        frank => { count => 3 }
    );
    
  2. or download this
    @users = [
        { count => 1 },
        { count => 3 }
    ];