Browse Source

Fix variable example in docs

github-actions v0.0.3
Garrit Franke 3 years ago
parent
commit
00987529f8
  1. 2
      docs/concepts/variables.md

2
docs/concepts/variables.md

@ -9,7 +9,7 @@ To declare a variable, the `let` keyword is used.
fn main() { fn main() {
let x = 10 let x = 10
let y = 5 let y = 5
return x + y print(x + y)
} }
``` ```

Loading…
Cancel
Save