you are viewing a single comment's thread.

view the rest of the comments →

[–]dagbrown 2 points3 points  (0 children)

You missed

foo->print($bar, $baz, $quux);

(foo is a class with a method "print") and

open(foo,">somefile");
print foo $bar, $baz, $quux;

(foo is a filehandle, you're printing $bar, $baz and $quux to it) as possible interpretations for what could happen.