diff --git a/examples/bare0.rs b/examples/bare0.rs index cb4eb7eadc39a26cc75357e30fa1e5bf688caa72..c63d88e92e4760d7028a0da1fc0755a89e25ffda 100644 --- a/examples/bare0.rs +++ b/examples/bare0.rs @@ -26,20 +26,22 @@ fn main() { assert!(x == X && X == Y); } } + } } // 1. run the program in the debugger, // let the program run for a while and then press pause // look in the (Local -vscode) Variables view what do you find -// ** your answer here ** +// x: 7852532 // // in the Expressions (WATCH -vscode) view add X and Y // what do you find // -// ** your answer here ** +// X: 785232 +// Y: 785232 // step through one complete iteration of the loop // and see how the (Local) Variables are updated // can you foresee what will eventually happen? -// ** place your answer here ** +// Yes // // commit your answers (bare0_1) //