Rust is fairly new multi-paradigm system programming language that claims to offer both high performance and strong safety guarantees, particularly around concurrency and memory allocation. As I play with the language a little, I’m using this series of blog posts to discuss some of its more unique features as I come across them. This one discusses Rust’s data types and powerful match operator.
This is the 2nd of the 7 articles that currently make up the “Uncovering Rust” series, the first of which was Uncovering Rust: References and Ownership.
Read article ( 18 minutes )
Rust is fairly new multi-paradigm system programmating langauge that claims to offer both high performance and strong safety guarantees, particularly around concurrency and memory allocation. As I play with the language a little, I’m using this series of blog posts to discuss some of its more unique features as I come across them. This one talks about Rust’s ownership model.
This is the 1st of the 7 articles that currently make up the “Uncovering Rust” series.
Read article ( 18 minutes )
Recently I had cause to find out where a particular process is currently writing a file on MacOS and I wanted to describe how I went about it for reference.
Read article ( 5 minutes )