abenga / valagtk3tutorial

GTK+ Programming Using The Vala Programming Language.
Other
18 stars 9 forks source link

First Programs 'A first program' simplewindow.vala doesn't compile #4

Open stephenmjmaxwell opened 7 years ago

stephenmjmaxwell commented 7 years ago

The simplewindow code example doesn't compile with error: valac --pkg gtk+-3.0 simplewindow.vala:6.27-6.32: error: The nameWindow' does not exist in the context of main' Gtk.Window window = new Window();

It does compile when Gtk.Window window = new Window(); changed to var window = new Gtk.Window ();