basic.:=

Assignment Operator/BASIC Program, Releases: AP 5.2.5

Concatenates expression and assigns to variable.

Syntax

variable := string.expression

Description

concatenates a string to a variable and assigns it back to the given variable.

Example

x := y

Concatenates 'y' to 'x'. This is equivalent to: x = x : y

See Also

Command Name Type Description
basic.- Operator Mathematical operator (subtract). Also unary minus.
basic.string.expression Definition An expression which evaluates to a string.
basic.precision Statement Defines precision for calculations.
basic.sum Function Returns the sum of a list of numbers
basic.-= Assignment Operator Subtracts numeric expression and assigns to variable.
basic./= Assignment Operator Divides numeric expression and assigns to variable.
basic.cat Relational Operator Concatenates string expressions.
basic.precedence Definition Precedence of compound expressions.
basic.assignment Definition Assigns value to variable.
arithmetic.operators Definition add, subtract, multiply, and divide numeric operands in arithmetic expressions.
basic.arithmetic.expressions Definition Arithmetic expressions.
basic.*= Assignment Operator Multiplies numeric expression and assigns to variable.
basic.+= Assignment Operator Adds numeric expression and assigns to variable.
basic.*.multiply Operator Arithmetic multiply operator

User Comments

What do you think?

Share your experience or ask a question by using the form below.

Login to leave your comments.