Created
July 29, 2011 14:59
-
-
Save tadzik/1113985 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
┌─[tadzik@yavin4]─[~/src/nom] (podparser) | |
└─[%]─> cat abug.pl | |
#= should | |
class Foo { | |
} | |
#= shouldn't | |
say Foo.WHY | |
┌─[tadzik@yavin4]─[~/src/nom] (podparser) | |
└─[%]─> ./perl6 abug.pl | |
DECLARATOR was becomes should | |
DECLARATOR was should becomes should | |
DECLARATOR was should becomes shouldn't | |
DECLARATOR was shouldn't becomes shouldn't | |
Setting docs for Perl6::Metamodel::ClassHOW() | |
shouldn't |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
142 token comment:sym<#=> {$*DECLARATOR := ~$
143 '#=' \h+ $=[\N_]
144 {
145 say("DECLARATOR was ", $_DECLARATOR,
146 " becomes ", ~$);
147
148 }
149 }