7 lines
83 B
Text
7 lines
83 B
Text
fn main() -> i32 {
|
|
let x = {
|
|
let y = 20;
|
|
y + 10
|
|
};
|
|
x
|
|
}
|