Programming Thread

Viewing single post

Started by the-pi-guy, Mar 13, 2016, 10:39 PM

previous topic - next topic

Legend

So we are learning about strictly functional programming.

Where absolutely everything is done using functions.

So there's nothing like a+b, instead, it's add(a,b)

And most things are done using recursion.
Does that change things really?

I know in C# a+b calls a function anyway.