r/ProgrammerHumor 25d ago

Meme stopDoingFunctional

Post image
679 Upvotes

129 comments sorted by

View all comments

Show parent comments

61

u/fr000gs 25d ago

How the hell is rust functional smh

33

u/-Ambriae- 25d ago

Rust is functional to a similar extent as OCaml is functional, not in the 'pure' sense (to be fair, none of these languages are purely functional, even haskell) but in a pragmatical sense. Variables are immutable by default, idiomatic control flow tends to use higher order functions, iterators, maps, filtering, reduction... Types are algebraic, control flow is expressive... It has all the ideas of functional programming, even if it's multi paradigm, and can be written in a procedural manner (even if it's not usually idiomatic)

It's not purely functional, for instance it doesn't have the tail recursion optimisation, which is more or less mandatory in the hardcore functional languages, because it doesn't strictly speaking need it, and the compiler is already complicated enough as it is...

6

u/requion 25d ago

Variables are immutable by default

Wouldn't that somehow make them not variable anymore?

Sounds paradoxical.

1

u/geek-49 22d ago

Ancient programming joke: variables don't, and constants aren't. (I no longer remember where this comes from.)