return &$ref; #### my @a; if(wantarray) { @a = &$ref; } else { $a[0] = &$ref; } ... do something ... return @a; #or return wantarray ? @a : $a[0];