1 2 3 4 5 6 7 8
fn main() { let x: int = 5 * 10; let y: int = x + x; let z: int = y - x / 2; return z; }