1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/%2B_%21.txt
Roland Heyder 6912727753 Update help files
Help file snapshot as of 07/31/2022.
2022-07-31 23:57:56 +02:00

31 lines
1.1 KiB
Plaintext

{{QBDLDATE:07-31-2022}}
{{QBDLTIME:23:54:00}}
The '''+''' plus mathematical operator performs addition on two numerical values or [[concatenation|concatenate]] [[STRING]] values.
''Syntax:'' return_value = number1 + number2
{{PageDescription}}
* A [[+]] sign also can indicate a positive numerical value, but it is not required.
* Numbers used can be any literal or variable numerical value type.
* Adding one negative value will actually perform subtraction on the other value.
* Adding two negative values will make the return value more negative.
* Addition and subtraction are the last operations performed in QBasic's normal order of operations.
* The [[+|plus(+)]] operator can also be used to add ([[concatenation|concatenate]]) literal or variable [[STRING]] values.
* [[PRINT]] can also use + operations on string values ONLY! Numerical values will need to be converted to strings first or be included using [[semicolon]]s or [[comma]]s instead.
''See also:''
[[-|- minus]] (subtraction or [[negation]] operator)
[[Mathematical Operations]]
{{PageNavigation}}