programming-examples/perl/SystemFunction/use Text-Abbrev.pl
2019-11-15 12:59:38 +01:00

7 lines
126 B
Perl

use Text::Abbrev;
%hash = abbrev qw(Now is the time);
foreach $key (keys %hash) {
print "$key => $hash{$key}\n";
}