compounds
latest
Compounds statements.
COMPOUNDS
NAME
compounds - Compounds statements.
SYNOPSIS
compounds statements +=, -=, =, /=, %=, *=, |=, &=, <⇐, >>=
DESCRIPTION
All compounds statements are use to simplify the writing of an assignment. Its faster to use compound statement because the second expression did not to be evaluated.
EXAMPLES
Note: In the followings examples, the _ between the { should be removed to make it work.
{_{ a=5; a+=6; a[10][2].z=5; a[10][2].z+=6; }_}
AUTHOR
Written by Pierre Laplante, <laplante@sednove.com>