The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213141516171819 ### The scanner of words on the command linesub new { my $class = shift; $self = { printer => Printer->new, }; bless $self, $class;}sub scan { my $self = shift; my $line = readline; ### FIXME}1;
### The scanner of words on the command line
sub
new {
my
$class
=
shift
;
$self
= {
printer
=> Printer->new, };
bless
,
}
scan {
$line
readline
### FIXME
1;