Help for this page

Select Code to Download


  1. or download this
    my %control = map { $_ => 'false' } split ' ', 'play ctrl loop'
    my %control = map { $_ => 'true' } split ' ', $4;
    
  2. or download this
    $control{$_} = 'true' foreach split ' ', $4;
    
  3. or download this
    foreach ( split ' ', $4 ) {
        $control{$_} = 'true';
    }