createWindow

v0.0.2
createWindow(w, h);

Create a GLFW window

Arguments

wWindow width
hWindow height

If no window was created and a setup function was defined, a warning is thrown

function setup()
  -- Create the window here
  createWindow(600, 600);
end

function draw()
  -- draw things
end
See createWindow in window.h