The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Demo1 qr/bill/i => "William", is => 'was' ;

sub bill { print "My name is Bill\n"; "explicitly named" }

bill();
&bill;

print "Thanks, Bill, your bill is @{[bill()]}\n";