Edward Peschko writes:
> Ok, question here. Are these exegesises 'blessed'? What is open to
> debate on this?

As Simon says, ask whatever questions you want.

>   print "Post order: "; show($root,$post); print "\n";
> would be better off written as:
>   print "Post order: &show($root, $post)\n";
> wouldn't it?

Yes, except that you're relying on show() not returning a value there.
If show() was written so that it happened to have a print statement as
the last thing in the sub, then you'd get random 1s in your output.

That's a style difference, though, not a language capabilities issue.

Nat

Reply via email to