home *** CD-ROM | disk | FTP | other *** search
- program Testbanner;
- {$I Iletters.pas}
-
- var
- words : phrase_chars;
- the_msg : big_message;
-
- begin
- clrscr;
- words := ' HELLO WORLD '; {25 chars max... else haywire}
- add_letter(the_msg,words); {build banner}
- banner(the_msg,length(words)); {display banner}
- end.