Just Starting Out
Posted: Thu Feb 13, 2014 11:57 pm
.....Hello! I just started looking into LUA as a stand-alone language, since I wanted to try something different. I've mostly been using Java at this point, with some C++ and Python mixed in. Anyways, my friend recommended that I start out by making a post asking for any advice or pointers. This is that post.
.....So, my question/request in general is, "How would I best go about starting LUA/LOVE?". A further extension is, "What would be the most useful stuff to learn?". I've already got Sublime Text, and LOVE installed. Which brings me to a slight detour; I'm having trouble setting up the "System Build" that is supplied here: http://love2d.org/wiki/Sublime_Text_2. I copied it directly (From the "Windows" segment), and it said that "'love' is not recognized as an internal or external command, operable program or batch file.". My friend suggested changing it so that it points to where love is installed. When I used "\", it gave parser errors with pink backgrounds. When I changed to "/", it said "'C:/Program' is not recognized as an internal or external command, operable program or batch file.". Advice would be much appreciated. My current setup is: http://pastebin.com/jYBPZVW9
.....Anyways, I'd like to thank anybody in advance that can give any advice. Recommended tutorials are also appreciated. Hopefully I can have something to show for you fellows soon, eh?
-Ryan
Edit: Forgot to mention that I looked at LUA in Roblox, heh. Not sure if it counts.
Edit 2: Finally found out what the problem was. I had to escape the "/" characters. End result is:
.....So, my question/request in general is, "How would I best go about starting LUA/LOVE?". A further extension is, "What would be the most useful stuff to learn?". I've already got Sublime Text, and LOVE installed. Which brings me to a slight detour; I'm having trouble setting up the "System Build" that is supplied here: http://love2d.org/wiki/Sublime_Text_2. I copied it directly (From the "Windows" segment), and it said that "'love' is not recognized as an internal or external command, operable program or batch file.". My friend suggested changing it so that it points to where love is installed. When I used "\", it gave parser errors with pink backgrounds. When I changed to "/", it said "'C:/Program' is not recognized as an internal or external command, operable program or batch file.". Advice would be much appreciated. My current setup is: http://pastebin.com/jYBPZVW9
.....Anyways, I'd like to thank anybody in advance that can give any advice. Recommended tutorials are also appreciated. Hopefully I can have something to show for you fellows soon, eh?
-Ryan
Edit: Forgot to mention that I looked at LUA in Roblox, heh. Not sure if it counts.
Edit 2: Finally found out what the problem was. I had to escape the "/" characters. End result is:
Code: Select all
"cmd": ["love", "C:\/Users\/Ryan\/Desktop\/LUA Programs\/First Test"],