Kernighan shared his thoughts on what he thinks of the world today — with its push away from C to more memory-safe programming languages, its hundreds of distributions of Linux — and with descendants of Unix powering nearly every cellphone.
Yeah, cargo build produces a debug build and cargo build --release is for actually distributing to users. (It doesn’t add the debug symbols, but also spends more time optimizing.)
Yeah,
cargo buildproduces a debug build andcargo build --releaseis for actually distributing to users. (It doesn’t add the debug symbols, but also spends more time optimizing.)