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
21 it was...
ImageUploadedByTapatalk1431364780.589762.jpg
 
  • Like
Reactions: playerismc
22 :)

also I am working on yet another script for my world. I have 3 turtles that are managing my item processing after this script is made
 
23 one script is only 97 rows big and the other only 14. This does include comments and white rows. that is nothing
 
23 I learned to program thanks to computercraft and now I have a "job" working with code. So.... yes I know how computercraft works.
Also lua>php and lua>javascript I hate those 2 so much but sadly I use them almost always because those are the standards :( .
 
23 the reason is simple
first lua
Code:
local a=1
local b=2
if a==b then
print("yes")
else
print("no)
end
then lets go with php
Code:
 a=1;
 b=2;
if(a==b){
echo("yes");
}else{
print("no);
}
and this is just one of the many examples why I like lua more then php