I try to write all of my scripts error free with the -w switch.(which I am rarely succesfull at) Whenever I write something using the Tk module, I get "Use of uninitialized variable at Tk.pm line 350". It does not effect the script at all, but I am curious to how I would stop it. I looked in the Tk.pm source on line 350 and it deals with the variable $Home which stores your
$ENV{'HOME'} variable. I try to add $Home=$ENV{'HOME'}; in my source, but no luck still same message.