/* * Hello * ----- * This program prints "Hello world" on a window. * * Notice that the program automatically detects that you have * no visible windows, so it creates one and shows it for you. * * Also notice that event handling is done automatically. */ #include void main(void) { gprintf("Hello world\n"); }