Difference between revisions of "Statement Reference"
Jump to navigation
Jump to search
m
→Examples
imported>Ditre (not having the conditional values in parenthesis caused undesirable results while testing my own codes) |
imported>CT m (→Examples) |
||
Line 33: | Line 33: | ||
; Assign 5 to x | ; Assign 5 to x | ||
x = 5 | x = 5 | ||
;This assignment is equivalent to x = x + 5 | |||
x += 5 | |||
;This assignment is equivalent to x = x * (5 + 5) | |||
x *= 5 + 5 | |||
</source> | </source> | ||
<br> | <br> |