- or download this
print do_stuff();
- or download this
use strict;
...
$_ = 'hello world goodbye';
s/$target/print $should_replace{$target} ? "$repl " : "[$repl] "/ex;
- or download this
use strict;
use warnings;
...
my $output = exists $should_replace{$target} ? "$repl " : "[$repl]
+ ";
say $output;
}
- or download this
use strict;
use warnings;
...
--output:--
[Hello]