2 Jun
2004
2 Jun
'04
8:09 a.m.
At 23:33 01/06/2004, you wrote:
* Hans Hagen
[Jun 01, 2004 21:30]: if ($ENV["TEMP"] && -e $ENV["TEMP"]) { $RunPath = $ENV["TEMP"] ; } elsif ($ENV["TMP"] && -e $ENV["TMP"]) { $RunPath = $ENV["TMP"] ; }
Just checking, aren't the []'s supposed to be {}'s. $ENV is a hash and this is Perl, so that's the proper way to do it right? I know you use Ruby as well, so my guess is that you transposed Rubyisms onto Perl?
indeed -) interestingly perl does not complain, which is one more reason to go ruby thanks Hans