|
|
|
|
|
by k__
4421 days ago
|
|
I guess most people build CRUD stuff without (knowingly) using functional principles. Programming is inherent mathematical, but if you don't progam functional, the math "behind" your software gets more abstract ... or should I say obscure? In the end your computer is a big function with input, calculation and output. But if you write your code with side effects you can't do a fine function based split-up of your code, you have to consider bigger chunks of code, consisting of many dependent functions as one "mathematical" function. If the math is more complex and logical reasoning about it gets harder, people start to think about it as "not-math" but something different. |
|