Navigation: thinBasic language > Operators > Arithmetic > Operator (*) |
|
Description
Used to multiply two numbers.
Syntax
result = expression1 * expression2
The * operator syntax has these parts:
Part | Description |
result | Any variable. |
expression1 | Any expression. |
expression2 | Any expression. |
Returns
N/A
Remarks
Restrictions
See also
Examples
DIM MyNumber AS LONG
'Result will be the number 72
MyNumber = 12 * 6
© 2004-2008 thinBasic. All rights reserved. | Version 1.7.0.0 | Web Site: http://www.thinbasic.com |