Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Perlito5 - parser - TODO list
  • Loading branch information
fglock committed Jul 24, 2013
1 parent f4ffaad commit bad489f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions TODO-perlito5
Expand Up @@ -127,6 +127,17 @@ TODO list for Perlito5
$ perl -e ' $::X::::X = 3; print $main::X::X ' # empty
$ perl -e ' $::X::::X = 3; print $::::X::::X ' # empty

-- CORE:: namespace can be used with operators:

$ perl -MO=Deparse -e ' $x CORE::and $v '
$v if $x;

$ perl -MO=Deparse -e ' @v = CORE::qw/ a b c / '
@v = ('a', 'b', 'c');

$ perl -MO=Deparse -e ' $x CORE::+ $v '
CORE:: is not a keyword


-- strict and warnings: create options like 'subs', 'refs'

Expand Down

0 comments on commit bad489f

Please sign in to comment.