3 \begin{internallinenumbers
}
4 \noindent\verb2#!
2\verb!/usr/bin/perl -w!\\
7 \verb!my $text= 'Variable names in Perl can have several formats. Usually,!
9 \end{internallinenumbers
}
10 \verb!they must begin with a letter or underscore, in which case they!
11 \verb!can be arbitrarily long (up to an internal limit of
251 characters)!
12 \verb!and may contain letters, digits, underscores, or the special!
13 \verb!sequence :: or \'. In this case, the part before the last :: or \'!
14 \verb!is taken to be a package qualifier; see perlmod.';!
16 \begin{internallinenumbers
}
19 \verb!while ($text =~ /
\b(
\w{5,
})
\b/g)!\\
21 \verb! print "$
1\n";!\\
23 \end{internallinenumbers
}