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
41 lua, and I am using luaDBI in this part of the code. (Still working on the query builder)
 
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
 
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)​