arch/cpu.resource: remove dead code
[AROS.git] / workbench / classes / zune / texteditor / demo / rexx / MakeFormalLetter.TEd
blob44fc86e6505f8d19c554fbad601041d44dd8b1e5
1 /* lala */
4 call addlib("rexxreqtools.library", 0, -30, 0)
5 Options Results
7 LF  = '0a'x
8 Esc = '1b'x
10 Name = rtgetstring("", , "Enter your full name:", ,)
13 if Name ~= "" Then Do
15  Clear
16  Text LF || LF || Esc || '[s:2]' || Esc || 'cA nice letter example:' || LF
17  Text Esc || 'r' || Date() || LF
18  Text Esc || 'l Dear ' || Name || LF || LF || 'Thank you for your interest in ' || Esc || 'bMotorola' || Esc || 'n Semiconductor Product Sector products and services.' || LF || LF || 'Enclosed are the documents you requested. We currently have over 2,300 databooks, datasheets and reference materials in stock to assist in your search for information regarding Motorola SPS products.'
19  Text '  [...]' || LF || LF
20  Text 'ohh, and ' || Esc || 'b' || Esc || 'p[7]' || Word(Name, 1) || Esc || 'p[0]' || Esc || "n - Don't be a stranger :-)" || LF
21  Text LF || LF || '   Sincerely,' || LF || LF || '      Literature Distribution Center for Motorola SPS' || LF
22  Text Esc || '[s:2]' || LF
24 End