Merge pull request #417 from adityakaklij/patch-1

Update ownership.md.
This commit is contained in:
Sunface
2025-04-25 12:09:51 +08:00
committed by GitHub

View File

@ -31,6 +31,15 @@ fn main() {
}
```
```
fn main() {
let x = String::from("hello, world");
let y = &x;
println!("{},{}",x,y);
}
```
2.
```rust