Search found 1 match

by lordango
11 Jul 2008, 09:22
Forum: Development Help
Topic: Can somebody explain this to me
Replies: 2
Views: 3778

Can somebody explain this to me

First of all im just new to perl. I am trying to make map viewer. in C# but i need to understand some perl codes first. I hope someone would be kind enough to help. my $f; if (open($f, "<", $filename)) { binmode($f); local($/); $fieldData = <$f>; close($f); } else { IOException->throw("Cannot open $...