Getting started on MacOS
Posted: Sun Feb 05, 2017 5:20 pm
Love looks like a great way to develop games using an easy language. However, I followed the installation instructions on the Love wiki site to the letter and created the minimal program as instructed, but when I run it, the app says there is nothing to run:
"boot.lua : 433 : no code to run"
My code is, as instructed on the getting started section of the wiki,
Am I missing something? It looks like I am making a function but not calling it, however I can't find anything about how to call a function.
Any help would be appreciated.
"boot.lua : 433 : no code to run"
My code is, as instructed on the getting started section of the wiki,
Code: Select all
function love.draw()
love.graphics.print("Hello World", 400, 300)
end
Any help would be appreciated.