Using the GTK graphical user interface

include "gtk.sol"
include <gtk/gtk.h>

int main(int argc, array argv)
  GtkWidget window = null
  gtk_init(null, null)
  window = gtk_window_new($GTK_WINDOW_TOPLEVEL)
  gtk_widget_show(window)
  gtk_main()
return 0