on Mon, 26 Aug 2002 12:49:17 GMT, [EMAIL PROTECTED] (Dharmendra 
rai) wrote:

> use foreach keys (%ur_hash_table)

What is your point with this single line message?
Do you realize that

    # WRONG
    foreach keys (%ur_hash_table) {
        # ...
    }

is a syntax error? Did you test it?
Perhaps you meant (using $_ as an implicit loop variable):

    foreach (keys %ur_hash_table) {
        # ...
    }

-- 
felix

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to