Could be even more basic, but this showcases some of the features the Vala language.
The code
using Gtk;
int main (string[] args) {
    Gtk.init (ref args);
    var window = new Window ();
    window.title = "First GTK+ Program";
    window.border_width = 10;
    window.window_...