From d65165442d6db0ce4e81a7ee975048dded7a383d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 25 Mar 2025 16:37:36 -0400 Subject: [PATCH] Better wording --- lesson-templates/lesson-03-variables.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson-templates/lesson-03-variables.tm b/lesson-templates/lesson-03-variables.tm index 01685f5..835a9b1 100644 --- a/lesson-templates/lesson-03-variables.tm +++ b/lesson-templates/lesson-03-variables.tm @@ -17,7 +17,7 @@ func main(): # Variables are strongly typed, so you can't # assign different types to the same variable: - x = "hello" + x = "hello" # <-- This will error, comment it out or fix it # Declare a variable called `y` and give it the # value "okay"