X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=README;h=feb777783d24f16518bbd0cfb87b2689aef95a75;hb=cd69c4462701dfb279e6a38447c1c3df768437cc;hp=b96f000b2892d09cb5ca948cc0b05ffd0fadc9a9;hpb=0f17e772017f31694cc38cb6425922921a49d750;p=perl%2Fmodules%2Fsubs-auto.git diff --git a/README b/README index b96f000..feb7777 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME subs::auto - Read barewords as subroutine names. VERSION - Version 0.03 + Version 0.05 SYNOPSIS { @@ -16,7 +16,7 @@ SYNOPSIS foo->meth; # "'foo'->meth" if you have use'd foo somewhere, # or "foo()->meth" otherwise print foo 'wut'; # print to the filehandle foo if it's actually one, - # or "foo()->print('wut')" otherwise + # or "print(foo('wut'))" otherwise } # ... but function calls will fail at run-time if you don't # actually define foo somewhere @@ -25,7 +25,7 @@ SYNOPSIS DESCRIPTION This pragma lexically enables the parsing of any bareword as a subroutine name, except those which corresponds to an entry in %INC - (expected to be class names) or whose symbol table entry has a IO slot + (expected to be class names) or whose symbol table entry has an IO slot (expected to be filehandles). You can pass options to "import" as key / value pairs : @@ -39,6 +39,8 @@ DESCRIPTION resolution of all the corresponding barewords. Defaults to the current package. + This module is not a source filter. + EXPORT None. @@ -67,8 +69,7 @@ DEPENDENCIES AUTHOR Vincent Pit, "", . - You can contact me by mail or on #perl @ FreeNode (vincent or - Prof_Vince). + You can contact me by mail or on "irc.perl.org" (vincent). BUGS Please report any bugs or feature requests to "bug-subs-auto at