|
|
|
|
|
by FeepingCreature
185 days ago
|
|
Nah. Source: have done it without formal language theory. You can do most things by printf debugging and kludging. (Left-recursion? Use a while loop! Mutable state is a pathway to many abilities functional programmers consider unnatural.) |
|
I remember being in the PHP culture where people wrote regex-based hacks instead of the character-at-a-time or token-at-a-time state machines or state machine + a stack kind of things which would be too slow in a language like that.
The less you know the faster you get in trouble when things get tough.