Help for this page

Select Code to Download


  1. or download this
    $ ./perl6 -e 'supersede sub a { }'
    ===SORRY!===
    "supersede" not yet implemented at line 1, near " sub a { }"
    
  2. or download this
    sub asub ( $ace, $deuce?, $trey? ) {
        say "$ace $deuce $trey";
    ...
    
        is asub(1), 'asub', 'lexically hiding works';
    }