Help for this page

Select Code to Download


  1. or download this
    @users = @{GetUsers()};
    map { $tk{user_list}->insert('end',
    ...
                     -text=>"$_",
                     -image=>$im{ONE}) } 
    @users;
    
  2. or download this
    sub GetUsers
    {
    ...
        #return @found; # this does not return correctly.
        #return [qw/One Two Three/]; #this will return correctly.
    }