2016-08-21 05:29:16 +00:00
|
|
|
local pop = require("")
|
2017-01-10 20:57:02 +00:00
|
|
|
pop.text("Hello World!"):align("center", "center")
|
|
|
|
love.draw = function()
|
|
|
|
return pop.draw()
|
|
|
|
end
|
|
|
|
love.keypressed = function(key)
|
|
|
|
if key == "escape" then
|
|
|
|
return love.event.quit()
|
|
|
|
end
|
|
|
|
end
|