|
|
|
|
|
by FwarkALark
873 days ago
|
|
> Conceptually, I would say other languages are variable-based. This seems less meaningful than "syntax-based" . Certainly, a "variable" is not a fundamental I deal with on a daily basis in c-based languages—there are necessary exceptions cause by the limitations of the language, of course, like accumulator symbols in a reduction process or state variables in some specific algorithm. Nor do I understand any utility such a concept bings to the table—in fact, this concept brings mostly pain I'd like to forget and forbid from future projects. I refer to "symbols", not "variables". Regardless, variables are commonly implemented with a stack and are not trivial concepts to differentiate from the equivalent usage of a stack. Perhaps I should argue for a "syntax-oriented" language instead. I understand that procedural languages often have variables, but any method of programming that blesses this code as "good" typically doesn't bless the usage of variables outside of looping-with-an-accumulator, state machines, or some other formal usage. I certainly wouldn't emphasize this as any positive characteristic of the language given that its unique attribute is the ability to cause bugs by interacting with it incorrectly (god forbid you have a "pointer variable"—the most curse-upon-humanity type if such a concept were to ever exist) I write compilers. I don't know why anyone would willing make the mistake of creating the concept of "variables" again. |
|