http://www.perlmonks.org?node_id=1021759


in reply to Re^4: newbie need help with a simple code
in thread newbie need help with a simple code

\s # one whitespace character \s+ # one or more whitespace characters \s* # zero or more whitespace characters \s{5} # exactly five whitespace characters \s{3,5} # between 3 and 5 whitespace characters
package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name