Changeset 14256 for dan

Show
Ignore:
Timestamp:
06/19/08 18:39:23 (5 months ago)
Author:
tokuhirom
Message:

ひととおりそれっぽい構造にしてみた

Location:
dan/perl/Object-with/trunk
Files:
2 added
1 modified
1 moved

Legend:

Unmodified
Added
Removed
  • dan/perl/Object-with/trunk/lib/Object/with.pm

    r14221 r14256  
    11package Object::with; 
    2 use Exporter::Lite; 
    3 @EXPORT = qw/with/; 
     2use Exporter 'import'; 
     3our @EXPORT = qw/with/; 
    44 
    55use Scalar::Util 'blessed'; 
     
    4646} 
    4747 
     48__PACKAGE__ 
     49__END__ 
     50 
     51=head1 SYNOPSIS 
     52 
     53    with $obj { 
     54        method(); 
     55        method(); 
     56        method(); 
     57    }; 
     58