diff --git a/docs/concepts/variables.md b/docs/concepts/variables.md index a977e9e..5dc73fc 100644 --- a/docs/concepts/variables.md +++ b/docs/concepts/variables.md @@ -9,7 +9,7 @@ To declare a variable, the `let` keyword is used. fn main() { let x = 10 let y = 5 - return x + y + print(x + y) } ```