If you had been using strict you would have noticed that even using
our is giving you errors. What you are tyring to do is dereference a scalar reference. This is how you should be doing that:
That will work (wihtout any warnings) with
our and
my.
~Charlie