Files
wren/test/grammar.wren
T

10 lines
210 B
Plaintext
Raw Normal View History

2013-10-31 21:49:15 -07:00
// * has higher precedence than +.
io.write(2 + 3 * 4) // expect: 14
// * has higher precedence than -.
io.write(20 - 3 * 4) // expect: 8
// Using () for grouping.
io.write((2 * (6 - (2 + 2)))) // expect: 4