in reply to The hidden hashref

print "The value is ", $data->{args}->{stuff}, "\n";

Other ways to write this — which should clarify what's going on:

print "The value is ", $::{''}->{stuff}, "\n"; print "The value is ", $::{$data->{args}}->{stuff}, "\n";

(all three print "The value is bother")