in reply to print_notice or print $notice or print notice?
Which of these constructs is preferable?
With so little context, this is a meaningless question. What are you trying to accomplish? Answer that, and it's possible to evaluate these approaches.# 1 print 2 + 2; # 2 my $result = 2 + 2; print $result; # 3 print 4; # 4 use constant FOUR => (2 + 2); print FOUR; # 5 sub sum { $_[0] + $_[1] } print sum(2, 2);
(Code reuse is all well and good, but I'm not going to write an object oriented framework for a one-liner designed to strip out high bit characters.)
Update (Mon Oct 15 16:06:13 UTC 2001): Okay, this is unnecessarily short and terse. I apologize. Here are some questions I would ask before giving judgment:
|
|---|