1
0
forked from Mirror/wren

Conditional operator.

This commit is contained in:
Bob Nystrom
2014-02-15 11:36:01 -08:00
parent 4728687ca5
commit e535d7a9e7
12 changed files with 106 additions and 0 deletions

View File

@ -57,3 +57,5 @@ An `||` ("logical or") expression is reversed. If the left-hand argument is trut
:::wren
io.write(false || 1) // 1
io.write(1 || 2) // 1
**TODO: Conditional operator.**