Created
July 7, 2011 12:19
-
-
Save am0c/1069391 to your computer and use it in GitHub Desktop.
[perl #93990] test script
This file contains hidden or 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
| #!/usr/bin/env perl | |
| # | |
| # run as: | |
| # $ perl this_script.pl | perl | |
| # | |
| # [perl #93990] | |
| use B::Deparse; | |
| $dp = B::Deparse->new(); | |
| print $dp->coderef2text( | |
| sub { | |
| @, = "foo"; | |
| print "@{,} bar"; | |
| } | |
| ), "\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment