Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fredsted authored and smuuf committed Jan 20, 2020
1 parent a0f16a3 commit 7e17668
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/language_reference.md
Expand Up @@ -263,6 +263,16 @@ if (a) {
// b == 1
```

```js
c = false;
if (c) {
d = 1;
} else {
d = 2;
}
// d == 2
```

```js
a = false;
b = true;
Expand Down

0 comments on commit 7e17668

Please sign in to comment.