H
Size: a a a
p
DS
ΑZ
p
p
p
ΑZ
fn ret_one_impure() -> i32 {
println!("123");
1
}
pub fn run_impure_program() {
println!("Test");
let x = ret_one_impure();
let y = ret_one_impure();
println!("{}", x + y + ret_one_pure());
}
Не
понял зачем эта частьp
fn ret_one_impure() -> i32 {
println!("123");
1
}
pub fn run_impure_program() {
println!("Test");
let x = ret_one_impure();
let y = ret_one_impure();
println!("{}", x + y + ret_one_pure());
}
Не
понял зачем эта частьX
p
ΑZ
ΑZ
H
DS
fn ret_one_impure() -> i32 {
println!("123");
1
}
pub fn run_impure_program() {
println!("Test");
let x = ret_one_impure();
let y = ret_one_impure();
println!("{}", x + y + ret_one_pure());
}
Не
понял зачем эта частьDS
X
DS
DS
DS