home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / PC_V11_B.LZH / DEMO_PC / HELLO.C < prev    next >
C/C++ Source or Header  |  1993-07-03  |  380b  |  24 lines

  1. /*      HELLO.C -- Hello, world */
  2. #include <aes.h>
  3. #include <vdi.h>
  4. #include <stdio.h>
  5. #include <time.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <math.h>
  9. #include <stdarg.h>
  10.  
  11. #include <graphics.h>
  12.  
  13. #define ESC    0x1b
  14.  
  15. int main( void )
  16. {
  17.  while( !kbhit() ){
  18. graf_mouse( 4, (void*)0 );
  19.             
  20.     printf("Hello, world\n");
  21. }    
  22.     return 0;
  23. }
  24.