|
|
|
|
|
by SamReidHughes
2495 days ago
|
|
Without conditionals, every program either terminates after a pre-specified amount of computation or never terminates. That leaves you extremely limited in what you can accomplish (less powerful than a DFA). A DFA or maybe a 2DFA (which are equally powerful) is basically what you get when all you have is conditionals. Without that, what you have is a box that can read finite input and compute a value. Equivalent to a finite lookup table. |
|