5 lines
95 B
Perl
5 lines
95 B
Perl
use English;
|
|
|
|
$text = 'This is the time.';
|
|
$text =~ /time/;
|
|
print "Matched: \"$MATCH\".\n"; |