Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.32 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.32 KB

Sysart Tech Talk: Rust

Material for Sysart internal tech talk held in Finnish on 2021-06-02.

Getting started with Rust

Slides

Slides are in Finnish.

Start a spectacle presentation at http://localhost:3000/ with

cd slides
npx spectacle-cli -s slides.md

Simple example

Uses unwrap for error handling.

$ cd code-simple
$ cargo run

Refactored example

Error handling refactored to using a custom error type. This blog post provides a detailed description of the approach.

$ cd code-refactored
$ cargo run