home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / a / c_interp / Examples / Lines < prev    next >
Encoding:
Text File  |  1993-12-13  |  237 b   |  20 lines

  1. @* An example of the BBC library functions *@
  2.  
  3. main()
  4. {
  5. int x,y,c;
  6.  
  7. bbc_mode(15);
  8. bbc_cursor(0);
  9. puts("Colourful Lines..");
  10.  
  11. while(1==1)
  12.   {
  13.   x = rand()%1280;
  14.   y = rand()%1024;
  15.   c = rand()%256;
  16.   bbc_gcol(0,c);
  17.   bbc_draw(x,y);
  18.   }
  19. }
  20.