#include "graphics.h" int main( ) { initwindow(400, 300, "First Sample"); while (!kbhit()) { cleardevice(); circle(mousex(), mousey(), 40); delay(16); } return 0; }