Philosophies of Rust and Haskell

As regular users of both Rust and Haskell, the FP Complete engineering team often discusses the similarities and differences in these languages. In this post, we’ll review some of the philosophical underpinnings of these languages. Read more

Similar

Interior Mutability Patterns in Rust

Rusts type system requires that there only ever is one mutable reference to a value or one or more shared references. What happens when you need multiple references to some value, but also need to mutate through them? We use a trick called interor mutabil... (more…)

Read more »