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