how do people feel about the english language syntax in lua (i.e. if then end do) ? as an experienced programmer it’s a minor annoyance, but for newcomers, I’m curious if it’s helped anyone come to grips with the logical operations or made code more readable compared to c-style:
if (true) {
thing()
} else {
otherthing()
}
technically lua was my first programming language and my intro to these concepts, but I do not remember back that far : )