4 books
—
2 voters
C
“
loop {
work();
play();
; // <-- empty statement
}
Rust follows the tradition of C in allowing this. Empty statements do nothing except convey a slight feeling of melancholy. We mention them only for completeness.
”
― Programming Rust: Fast, Safe Systems Development
― Programming Rust: Fast, Safe Systems Development
“
The keyword const doesn’t turn a variable into a constant! A symbol with the const qualifier merely means that the symbol cannot be used for assignment. This makes the value read-only through that symbol ; it does not prevent the value from being modified through some other means internal (or even external) to the program.
”
― Expert C Programming: Deep C Secrets
― Expert C Programming: Deep C Secrets
3 members,
last active 6 years ago











































