a plus b: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
'''Description:''' | '''Description:''' | ||
For numbers: '''a''' added to '''b'''. | For numbers: '''a''' added to '''b'''. | ||
Revision as of 14:14, 19 April 2006
back to COMREF
a + b
Operand types:
Type of returned value:
Description:
For numbers: a added to b.
For strings: All the characters in a and the characters in b are added together.
For arrays: Contents of a and the contents of b are added together.
See also. Array
Examples:
Number
_result = 1 + 2 ........ _result is 3
String
_result = "He" + "llo" ........ _result is "Hello"
Array
_result = [1] + [2] ........ _result is [1,2]