comment_edit

This commit is contained in:
Tahinli 2023-05-07 03:49:54 +03:00
parent c3c2f41509
commit 8e647bc6e5

View file

@ -18,8 +18,9 @@ fn main()
println!("s3 = {}", s3); println!("s3 = {}", s3);
println!("s4 = {}", s4); println!("s4 = {}", s4);
//"Copy" all data are in stack //All data are in stack
//Because size is known while compiling //Because size is known while compiling
//"Copy"
let x = 5; let x = 5;
let y = x; let y = x;
println!("x = {}", x); println!("x = {}", x);