newbie user-pass attempt

2002-10-09 Thread Kyle Babich
After trying my hand at perl, realizing it was above my head, going back at starting with python, and now trying again at perl this is my first (failed) attempt at a user-pass program attempt, except it never accepts the username. What is wrong with it? %up = { 'kyle' = 123, 'jason' = 123,

Re: newbie user-pass attempt

2002-10-09 Thread Michael Fowler
On Thu, Oct 10, 2002 at 12:01:31AM +, Kyle Babich wrote: %up = { 'kyle' = 123, 'jason' = 123, 'chelsea' = 123, 'john' = 123, 'cheryl' = 123 }; This is your problem. You've constructed an anonymous hash and assigned it to %up. You should be using parens, not curly braces: