# New Ticket Created by quester
# Please include the string: [perl #126264]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=126264 >
If you absent-mindedly type in keywords that should be capitalized in lower
case, the compiler will not suggest the correct upper case form. For example:
$ perl6
> say EVAL "2+2";
4
> say eval "2+2";
===SORRY!=== Error while compiling <unknown file>
Undeclared routine:
eval used at line 1. Did you mean 'val'?
> BEGIN {say pi}
3.14159265358979
> begin {say pi}
===SORRY!=== Error while compiling <unknown file>
Undeclared routine:
begin used at line 1
>
Best regards,
quester