index.md (511B)
1 --- 2 title: "Exercise: Actors" 3 tags: [exercise, rust, concurrency, memory-safety] 4 --- 5 6 A from-scratch implementation of an 7 [actor](/async_programming/actors.md) in Rust using tokio pmsc 8 channels. The goal is to understand how an actor works at the lowest level — 9 without relying on any framework following 10 [Alice Rhyl's blog post](https://ryhl.io/blog/actors-with-tokio/). 11 12 > [!info] Source Code: 13 > [exercises/actors/src/main.rs](https://github.com/ling0x/notes/blob/main/content/exercises/actors/src/main.rs)