LOTUSSCRIPT LANGUAGE


Examples: CDbl function
' Convert the sum of two Single values to Double.
Dim x As Single
Dim y As Single
Dim result As Double
x! = 11.06E23
y! = 6.02E23
result# = CDbl(x! + y!)
Print result#              ' Prints 1.70800003057064E+24

See Also