Rust for Haskell Programmers

While we focus on Haskell at MMH, it’s also good to branch out to other languages every once and a while. If you’re a diehard Haskell developer, Rust is one of the more interesting languages to try out when you broaden your horizons. Its syntax has a lot … Read more

Similar

Performance Showdown: Rust vs. JavaScript

After spending some weeks playing with Rust, I felt ready to test my skills and try some programming challenges in the [Advent Of Code](https://adventofcode.com/). My approach to tackle some of those challenges was to solve them using Javascript (I use it... (more…)

Read more »

How to Deploy Rust on Heroku (With Docker)

Due to its unrivaled reliability and performance, Rust is more and more appreciated by companies for web development. And when we talk about web development, Heroku is never far away. So here is the easiest way to deploy a Rust app on Heroku (whether it b... (more…)

Read more »

Error Handling in Rust

Like most programming languages, Rust encourages the programmer to handle errors in a particular way. Generally speaking, error handling is divided into two broad categories: exceptions and return values. Rust opts for return values. (more…)

Read more »