01: #include "ccc_win.h"
02:
03: int ccc_win_main()
04: { string name = cwin.get_string("Please, enter your name: ");
05: Circle c(Point(0, 0), 1);
06: cwin << c
;
07:
Point m = cwin.get_mouse("Please, click inside the circle.");
08: cwin << m << Message(m, name + ", you clicked here."); 09: 10: return 0;
11: }