Syntax error

Using Gtk
b=GtkBuilder(filename=“/home/tjr/Glade/test.glade”)
win=b[“Test Window”]
showall(win)
When I try to run I get
syntax: extra token “Gtk” after end of expression
top-level scope at test.jl:1
include_string(::Function, ::Module, ::String, ::String) at loading.jl:1088
Any help would be greatly appreciated…Tim

Make sure that using is all lowercase:

using Gtk
2 Likes