home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / window / tegl / intropak / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-05  |  243 b   |  15 lines

  1. #include "teglsys.h"
  2.  
  3. void main(void)
  4.   {
  5.     easytegl();
  6.     easyout();
  7.  
  8.     pushimage(100,100,200,130);
  9.     shadowbox(100,100,200,130);
  10.     setcolor(BLACK);
  11.     outtegltextxy(105,105,"Hello World!");
  12.     teglsupervisor();
  13.   }
  14.  
  15.