vault backup: 2025-02-19 10:41:15

This commit is contained in:
Dane Sabo 2025-02-19 10:41:15 -05:00
parent d1d94b3d81
commit bdc142f5a4

View File

@ -13,6 +13,10 @@ Functional programming languages do not do this. Instead of using iteratives lik
There's a special property about functions that can be called multiple times with the same parameters being guaranteed to return the same result: **Referential Transparency**. This property allows us to deduce and then even proved that a function does exactly what it is supposed to, every time.
Haskell is a statically typed language, and supports type inference. It has been developed since 1987, with the first stable version of the language coming out ofthe Haskell Report in 2003.
# What I need to dive in:
A Haskell compiler
^1 not really Rust, because I believe Rust has functional programming support.