summaryrefslogtreecommitdiff
path: root/main.lua
blob: 991e8d1253b8c537de6f01badf558c8f54b63db1 (plain)
1
2
3
4
5
6
7
8
9
10
require 'honey.std'


honey.glfw.Init()
local window = honey.Window(640, 480, "geometry")

while not window:shouldClose() do
	print(window:getSize())
	honey.glfw.PollEvents()
end