class Gee:
	public x as string

	def constructor():
		x = "foo"
		return
		x = "bar"

a = Gee()
print a.x