in reply to strict

Here is something simple. It is not much, pretty basic. yes, you can get this to work without strict, it is meant to be an example of how to use it.
#!/usr/bin/perl -w use strict; my $count = 0; do { print "$count "; $count++; }while($count < 10)
curtisb -- "Trying to help!"

Replies are listed 'Best First'.
Re: Re: strict
by toadi (Chaplain) on Nov 23, 2000 at 13:42 UTC
    Erm, no offence. But I know how to use strict:)
    The problem was with udefined variables. I wanted to print out, but I've builded a nice hash to store the data in.

    But thanx for the effort.<BT>
    --
    My opinions may have changed,
    but not the fact that I am right

      Ok, i just thought that I would try to help with a simple example. I wasn't trying to say anything was wrong, with your example. Just trying to keep is simple. Hashes were a good way to go.
      curtisb