/*
 Application console GTK.
 gcc -Wall -s `pkg-config --cflags --libs gtk+-2.0` -o cons cons.c
*/

#include <gtk/gtk.h>

int main( int argc, char *argv[] )
{
  g_print("Hello, World!\n");

  return 0;
}