#!/usr/bin/env python3

from snack import SnackScreen

print("\033%@")

screen = SnackScreen()
screen.drawRootText(0, 0, "Hellow, world")
input("Press Enter to exit...")
screen.finish()
