Improve error messages

Rust is one of the best in class. Here is an example:

fn main() {
    let s1 = String::from("hello");
    let s2 = s1;

    println!("{}, world!", s1);
}

This gives:

Screen_Shot_2021-10-15_at_8.29.32_PM