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 : )