/* * Make a Window * ------------- * This simple program shows how to create and * show a window on the screen. */ #include void main(void) { window w; w = newwindow("A Window", rect(50,50,150,200), StandardWindow); /* create your controls and drawing areas here */ show(w); mainloop(); /* close files and tidy up here */ }