Good vs. Evil

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
41 lua, and I am using luaDBI in this part of the code. (Still working on the query builder)
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
41 lua is fun and very easy, at least the syntax is. It does have some pitfalls though, like the thing I showed earlier :p
 

Someone Else 37

Forum Addict
Feb 10, 2013
1,876
1,440
168
42 Lua's pretty easy, as is Python. Python's turtle library, I've found, is a really good way to get someone started in programming, since they can directly see what their code does when they run it. None of this complicated text-based tomfoolery (well, not on the output side, at least).

Try running this code (you can just type or copy it right into the python shell, no need to create a text file even):

for i in range(5):
turtle.forward(200)
turtle.left(144)​