- or download this
my $r = "Time to work";
s/work/play/;
print $r;
- or download this
my $r = "Time to work";
$_ =~ s/work/play/;
print $r;
- or download this
my $_ = "Time to work";
s/work/play/;
print $_;
- or download this
my $r = "Time to work";
$r =~ s/work/play/;
print $r;