blob: bc8d9c10de17bf64aebefbd414c2a532bfa67e73 [file] [log] [blame]
pub fn main() {
let (x, y) = (10, 20);
let z = x + y;
assert_eq!(z, 30);
}