From ad6ceb86d4cfb02ee380eaf8dd895e4cbef68f44 Mon Sep 17 00:00:00 2001 From: Megan McMahon Date: Mon, 30 Oct 2023 15:39:13 -0600 Subject: [PATCH] Update Debugging.md --- module1/lessons/Week4/Debugging.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/module1/lessons/Week4/Debugging.md b/module1/lessons/Week4/Debugging.md index dac747c8..b4e89d44 100644 --- a/module1/lessons/Week4/Debugging.md +++ b/module1/lessons/Week4/Debugging.md @@ -9,7 +9,11 @@ title: Debugging ## Warmup -> In your notebook, write about a time when you tried something and it didn't go as planned. How did you know things were going off course? Were you able to make adjustments and get back on track? +
+ +In your notebook, write about a time when you tried something and it didn't go as planned. How did you know things were going off course? Were you able to make adjustments and get back on track? + +
Fun Fact: According to programming lore, the first computer bug was [an actual bug 🪲](https://education.nationalgeographic.org/resource/worlds-first-computer-bug) -``` + + ## Using Breakpoints @@ -102,4 +107,4 @@ In this example, part of the code before the next breakpoint includes a `ReadLin 5 products = products + ", ear buds"; 6 7 Console.WriteLine($"Current Inventory: {products}); -``` \ No newline at end of file +```