@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/demo_rawdata.pl
package UNIVERSAL; use Attribute::Handlers; sub Cooked : ATTR(SCALAR) { print pop, "\n" } sub PostRaw : ATTR(SCALAR,RAWDATA) { print pop, "\n" } sub PreRaw : ATTR(SCALAR,RAWDATA) { print pop, "\n" } package main; my $x : Cooked(1..5); my $y : PreRaw(1..5); my $z : PostRaw(1..5);