At 02:35 PM 5/18/01 -0400, Yacketta,Ronald J wrote:

>ugh!
>
>my god I have no clue what these errors mean, holy crud there are a million!
>
>Global symbol "g_version" requires explicit package name at ./wki.pl line 27
>the line is
>$g_version      =       "alpha 1.0";

Change it to

   my $g_version = "alpha 1.0";

>looks ok to me *shrug*
>every single variable is giving me this grief :(

Start out by putting "my " before the first occurrence of every 
variable.  perldoc -f my.

This functionality helps you catch typos.
--
Peter Scott
Pacific Systems Design Technologies
http://www.perldebugged.com

Reply via email to