summaryrefslogtreecommitdiff
path: root/meap/meap-code/ch5/ch5-impossible-add.rs
blob: f7f238d5b9ecd02f17ef3d5f9aee27166a7b88b8 (plain) (blame)
1
2
3
4
5
fn main() {
  let (a, b) = (200, 200);
  let c: u8 = a + b; // <1>
  println!("200 + 200 = {}", c);
}