X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fwith.git;a=blobdiff_plain;f=README;h=601f9f9cec53e016cdaf398fd48555cb2a8c03fa;hp=e7b0b282f3791a153345906aa1f548b6e05ee017;hb=38b20c3c8c5fefb9be82c3d5e49adab22e01697f;hpb=7ab966bd9eb74dd009e0dc81dc9c1f28a0481b0b diff --git a/README b/README index e7b0b28..601f9f9 100644 --- a/README +++ b/README @@ -2,7 +2,13 @@ NAME with - Lexically call methods with a default object. VERSION - Version 0.02 + Version 0.03 + +WARNING + This module was an early experiment which turned out to be completely + unpractical. Therefore its use is officially deprecated. Please don't + use it, and don't hesitate to contact me if you want to reuse the + namespace. SYNOPSIS package Deuce; @@ -11,6 +17,7 @@ SYNOPSIS sub hlagh { my $self = shift; print "Deuce::hlagh $self->{id}\n" } + package Pants; sub hlagh { print "Pants::hlagh\n" } @@ -25,7 +32,7 @@ SYNOPSIS use with \$deuce; hlagh; # Deuce::hlagh 1 Pants::hlagh; # Pants::hlagh - + { use with \Deuce->new(2); hlagh; # Deuce::hlagh 2 @@ -73,7 +80,7 @@ IGNORED KEYWORDS A call will never be dispatched to a method whose name is one of : my our local sub do eval goto return - if else elsif unless given when or and + if else elsif unless given when or and while until for foreach next redo last continue eq ne lt gt le ge cmp map grep system exec sort print say @@ -112,8 +119,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-with at rt.cpan.org", @@ -133,7 +139,7 @@ ACKNOWLEDGEMENTS order to add hints support and more placeholder patterns. COPYRIGHT & LICENSE - Copyright 2008 Vincent Pit, all rights reserved. + Copyright 2008,2017 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.