import pygtk
import gtk

class HelloFSUGAr(object):
	# A simple constructor for one Label
	def __init__(self):
		# Creating a new gtk window
		self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
		
		self.lbl = gtk.Label("Hello FSUGAr")
		self.window.set_default_size(150,50)
		# We must add the control to the window
		self.window.add(self.lbl)

		# and show both
		self.lbl.show()
		self.window.show()
	def main(self):
		gtk.main()

# Main program
# ############################################################################
hello = HelloFSUGAr()
hello.main()

