from java.lang import Runnable

class FooRunner(Runnable):
	def run(self):
		print "Hello from the Python world!"
