This commit is contained in:
Daniel Kluge 2022-07-04 11:28:50 +02:00
parent 5099bffff8
commit 9bcd1de97e

View File

@ -18,7 +18,7 @@ Das Folgende funktioniert also nicht:
---- ----
fn main() { fn main() {
let x = "Hello world!"; let x = "Hello world!";
// Das folgende funktioniert, weil x nicht mutable ist! // Das folgende funktioniert nicht, weil x nicht mutable ist!
x = "Hello Rust!"; x = "Hello Rust!";
} }
---- ----