Skip to content

Commit f9ad613

Browse files
authored
Update 646-language-endif.markdown
1 parent c34e54e commit f9ad613

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

_build/reference/646-language-endif.markdown

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
> ENDIF
44
5-
foo = 1: if foo==1: ? "one": ENDIF
5+
ENDIF ends an if statement. For more information see IF.
6+
7+
### Example
8+
9+
```
10+
foo = 1
11+
if foo == 1 then
12+
print "one"
13+
endif
14+
```
615

716

0 commit comments

Comments
 (0)