Signal: @timclicks.01
(Links to references at the end of the thread)
(Links to references at the end of the thread)
if 1 > -7 {
println!("🍎");
} else {
println!("🍐");
}
The compiler can deduce that one is greater negative seven, so it doesn't need to compile the "else" side. The whole conditional can be eliminated.
if 1 > -7 {
println!("🍎");
} else {
println!("🍐");
}
The compiler can deduce that one is greater negative seven, so it doesn't need to compile the "else" side. The whole conditional can be eliminated.
a
a
The main reason is portability. It's almost easier to build Rust programs for multiple operating systems than to port a large C codebase that's platform-specific.
The main reason is portability. It's almost easier to build Rust programs for multiple operating systems than to port a large C codebase that's platform-specific.
The test coverage page in the documentation linked to from the README makes it clear that there are gaps in the test compatibility.
The test coverage page in the documentation linked to from the README makes it clear that there are gaps in the test compatibility.
That's right, or at least that's what it seems like at first look. A component added to Ubuntu that's written in Rust was broken, and that prevented automatic updates.
That's right, or at least that's what it seems like at first look. A component added to Ubuntu that's written in Rust was broken, and that prevented automatic updates.
...you know, you don't need to go to the USA to go to an amazing Rust conference this year. You've got options.
...you know, you don't need to go to the USA to go to an amazing Rust conference this year. You've got options.
Make it easier for people to remember you by participating in discussions online. There are hundreds of people already there.
It's pretty easy to find. Open up the Rust Forge website and there's a button right there. Look for the word "Discord".
Make it easier for people to remember you by participating in discussions online. There are hundreds of people already there.
It's pretty easy to find. Open up the Rust Forge website and there's a button right there. Look for the word "Discord".