in reply to Switch - "case" may clash with future reserved word
BTW perl 5.10 (to be released before christmas) comes with built in switch statement of the form
given ($time) { when ("30days"){ ... } ... default { # do something else } } [download]