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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-12-13
|
237 b
|
20 lines
@* An example of the BBC library functions *@
main()
{
int x,y,c;
bbc_mode(15);
bbc_cursor(0);
puts("Colourful Lines..");
while(1==1)
{
x = rand()%1280;
y = rand()%1024;
c = rand()%256;
bbc_gcol(0,c);
bbc_draw(x,y);
}
}