Add comments to easy.reid

This commit is contained in:
Sofia 2024-08-21 23:31:31 +03:00
parent 6448b0c438
commit 8b8cd2c464

View File

@ -3,8 +3,8 @@
fn main() { fn main() {
let test = 9; let test = 9;
let simpleAdd = 2 + 2; let simpleAdd = 2 + 2;
let simpleMult = 7 * 2; let simpleMult = 7 * 2; // 14
let arithmetic = 3 + 2 * 5 + 1 * 2; let arithmetic = 3 + 2 * 5 + 1 * 2; // 15
return arithmetic + simpleMult * arithmetic; return arithmetic + simpleMult * arithmetic;
} }