You are trying to print a variable that has no value (null) so perl is telling you that the variable is empty, and therefore cannot print it.
Solution: find out why your variable $class[intRand(45)] is not populated. Make sure you are using 'use strict' and 'use warnings'. -Jeff On Wed, 6 Oct 2004 18:00:41 -0400, Kamal Ahmed <[EMAIL PROTECTED]> wrote: > > I am getting an error message: > > " > Use of uninitialized value in concatenation (.) or string at ./exploitD.pl > line 2093. > > Line 2093: > > print " $class[intRand(45)]"; > > Hoe can i get rid of this message ? > > Thanks, > > -Kamal. > _______________________________________________ > ActivePerl mailing list > [EMAIL PROTECTED] > To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs > > _______________________________________________ ActivePerl mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
