Comment on Why should I use rust (as a Go enthusiast)?

<- View Parent
technom@programming.dev ⁨1⁩ ⁨year⁩ ago

I don’t know how useful Options are in Python, with its duck typing. Python had something similar to Option::None all along - None. It’s possible to use None in Python is very idiomatic and surprising ways. Rust’s Some and None are tagged unions. And Rust forces you to address them - unlike Python.

source
Sort:hotnewtop