#include "xwin.c"

void mycode()
{
rectangle(100,100,200,200);
}


int main()
{
	makeWindow (600, 500);  // creates a  window to draw
	return 0;
}


