From 00987529f8800eef6c52608597d56618dd13511a Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Wed, 9 Dec 2020 23:37:06 +0100 Subject: [PATCH] Fix variable example in docs --- docs/concepts/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } ```