Explore >> Select a destination


You are here

sdowney.org
| | donsbot.com
9.5 parsecs away

Travel
| | I've been learning Rust for the past twenty days or so, working through the Blandy & Orendorff book, coding up things as I go. Once I got into playing with Rust traits and closures and associated types, the similarities to programming in Haskell with typeclasses, data structures, closure passing and associated types was pretty obvious....
| | poignardazur.github.io
11.9 parsecs away

Travel
| | This is an informal proposal for improving the Rust programming language. I'll assume familiarity with the language.
| | verdagon.dev
10.3 parsecs away

Travel
| |
| | andreabergia.com
32.5 parsecs away

Travel
| Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null.