RE: warn (was: yoda 2)

2000-08-18 Thread Peter Scott
At 10:33 AM 8/18/00 -0500, Brust, Corwin wrote: >Hmm this gets me thinking: >In the context of a catch block, if could @_ contain the exception stack, >starting with the current exception, could C be modified to act of @_ >if called in void context with no arguments? I like the idea of passing th

RE: warn (was: yoda 2)

2000-08-18 Thread Brust, Corwin
Hmm this gets me thinking: -Original Message- From: Tony Olekshy [mailto:[EMAIL PROTECTED]] Or, with try/catch... sub openrecord { for (my $attempt = 0; $attempt < 5; ++$attempt) { my $fileName = &GetRecordFileName; try { open REC, $fileName; }