templeos-info/temple-src/Demo/Graphics/NetOfDots.HC
2024-03-16 11:26:19 +01:00

17 lines
234 B
HolyC
Executable File

//Press <F5> to compile and run.
U0 NetOfDots()
{
I64 i;
CDC *dc=DCAlias;
DocClear;
dc->color=RED;
for (i=0;i<480;i+=20)
GrLine(dc,i,0,0,480-i,3);
DCDel(dc);
PressAKey;
DCFill;
}
NetOfDots; //Run when #included