Merge pull request #358 from teddywaweru/patch-1

Update ownershp.md
This commit is contained in:
Sunface 2023-02-13 10:50:37 +08:00 committed by GitHub
commit d75000d198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -23,11 +23,10 @@ fn main() {
println!("{},{}",x,y);
}
```
```rust
fn main() {
let x = 10;
let y = x;
let x = String::from("hello, world");
let y = x.as_str();
println!("{},{}",x,y);
}
```