Here is one way:
printf <mailto:[EMAIL PROTECTED]]
Sent: Monday, September 17, 2001 11:01
To: [EMAIL PROTECTED]
Subject: Dumping paragraphs of text
Hi,
Is there a more elegant and/or efficient way of dumping different
paragraphs of text based on a logical test than imbedding multiple l
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 ...