Rust has a curse (it has many, but this one is critical): inefficient code is generally visible. Experienced developers hate to notice that their code is inefficient. They will recoil at seeing
Arc<RefCell<T>>
, but won't bat an eye at using Python.
26 Likes