Tim Heaney
Tim Heaney
I wonder if your second bullet could be several articles. 1. Use /usr/bin/perl and modules with your distro's package manager. 2. Use /usr/bin/perl and modules with local::lib. 3. Install your...
For what it's worth, [I got Autopsy 4.5 to compile and "run" in Xubuntu 17.04 today](https://oylenshpeegul.wordpress.com/2017/10/18/autopsy-4-5-works-in-linux/).
There was some discussion of `&str` vs `&String` in the previous video. [At 11:13 of Shared borrows](https://www.youtube.com/watch?v=61bFe3jqi1E&t=11m13s), he talks about changing `&String` to `&str` in the `helper` function. That explanation...
We have to remove the assignment since we're no longer returning anything. That is, if we change ```rust str1 = join_words(&mut str1, &str2); ``` to ```rust join_words(&mut str1, &str2); ```...