-- DateTime datetime.lua
DateTime = {}
while not Keys.newPress.Start do
Controls.read()
startDrawing()
screen.print(SCREEN_UP, 0, 8 * 1, os.date())
screen.print(SCREEN_UP, 0, 8 * 6, os.date("%Y-%m-%d %H:%M:%S"))
screen.print(SCREEN_UP, 0, 8 * 10, os.time())
screen.print(SCREEN_DOWN, 0, 8 * 10, "Press START to quit")
stopDrawing()
end