Hi,
  Is there a more elegant and/or efficient way of dumping different
paragraphs of text based on a logical test than imbedding multiple line
print statements in the code?  For instance,

if (test) {
 print something;
 print ...;
 print ...;
}
else {
 print something else;
 print ...;
 print ...;
}

Can this be done with something like a begin / end block?

Thanks,
Russ Brooks

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to