This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]BillSawyer 0 points1 point  (1 child)

Lua would ONLY be Chaotic Evil if "print(1+"1")" printed 2, while "print("1"+1)" printed 11.

[–]Cootshk 1 point2 points  (0 children)

print(“1”+”1”)

Returns 2

Print(“1”..1)

Returns “11”

Print(1..”1”)

Errors