Help for this page
print( 3 + 4 );
print( $text =~ s/this/that/ );
$text =~ s/this/that/; print $text;
print( do { $text =~ s/this/that/; $text } );