|
|
|
|
|
by cowboysauce
1074 days ago
|
|
> Do you use functions? Unless you're using Haskell or something similar, mathematical functions and what most programming languages call "functions" are very different and are better referred to as procedures. Mathematical functions don't have any concept of some basic constructs like variables (state in general), I/O, or even sequential computation. Pure functional languages have to use things like monads to model procedures. |
|