#!/usr/bin/env python3 import sys sys.path.append('..') from tuikit.core.application import Application from tuikit.widgets.label import Label label = Label('Hello there!') label.pos.update(20, 10) app = Application() app.root_window.add(label) app.start()