home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 March / PCWELT_3_2005.ISO / pcwsoft / framework-2.2.exe / demo_call.pl < prev    next >
Encoding:
Perl Script  |  2003-11-07  |  154 b   |  12 lines

  1. #! /usr/local/bin/perl -w
  2.  
  3. use Attribute::Handlers;
  4.  
  5. sub Call : ATTR {
  6.     use Data::Dumper 'Dumper';
  7.     print Dumper [ @_ ];
  8. }
  9.  
  10.  
  11. sub x : Call(some,data) { };
  12.