createWindow(w, h);
Create a GLFW window.
Arguments
w
Window widthh
Window heightIt is also possible to create a window in the global scope without defining a setup function.
function setup()
-- Create the window here
createWindow(600, 600);
end
function draw()
-- draw things
end