@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux hosjweb-prod3 6.12.0-107.59.3.2.el9uek.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Dec 22 10:16:59 PST 2025 x86_64
Current Path :
/
usr
/
local
/
lib
/
perl5
/
5.8.7
/
Attribute
/
Handlers
/
demo
/
Path :
Upload File :
New :
File
Dir
//usr/local/lib/perl5/5.8.7/Attribute/Handlers/demo/demo2.pl
#! /usr/local/bin/perl -w use v5.6.0; use base Demo; no warnings 'redefine'; my %z1 :Multi(method?maybe); my %z2 :Multi(method,maybe); my %z3 :Multi(qw(method,maybe)); my %z4 :Multi(qw(method maybe)); my %z5 :Multi('method','maybe'); sub foo :Demo(till=>ears=>are=>bleeding) {} sub foo :Demo(['till','ears','are','bleeding']) {} sub foo :Demo(qw/till ears are bleeding/) {} sub foo :Demo(till,ears,are,bleeding) {} sub foo :Demo(my,ears,are,bleeding) {} sub foo :Demo(my=>ears=>are=>bleeding) {} sub foo :Demo(qw/my, ears, are, bleeding/) {} sub foo :Demo(qw/my ears are bleeding) {}