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