|
|
|
|
|
by username223
3859 days ago
|
|
> I however don't understand the reason for naming of eg elsif, my, slurp/spurt?? Yes, it's for historical reasons. "elsif" is spelled that way in Perl 5. Perl 5 has both "my" and "local" to specify lexical and dynamic scoping, respectively, so Perl 6 using "local" for lexical scope would be confusing. "slurp" is a common term for reading the entire contents of a file at once. |
|