home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TEGL6B.ZIP / INTROPAK.EXE / TWHELLO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-04-06  |  392 b   |  14 lines

  1. {-- simplest program using high level windows }
  2.  
  3. USES teglmain, twcommon, twkernel;
  4. VAR
  5.    wf : WinFramePtr;
  6. BEGIN
  7.   twEasyStart;    {-- simple startup }
  8.  
  9.   twInit(wf,100,100,400,250);         {-- creates & initializes }
  10.   twSetHeader(wf,'Hello World');      {-- set up individual items }
  11.   twDrawWindowFrame(wf);              {-- draw it the first time }
  12.  
  13.   TeglSupervisor;
  14. END.