Implicit Conversion

This program demonstrates the implicit conversion from one data type to another data type.

'Implicit Conversion
'Demonstrates the implicit conversion between data types
'******************************************************

Dim As Double myDbl
Dim As Integer myInt

'Set myDbl to a float value
myDbl = 5.56
'Assign myInt the float, will be converted to int
myInt = myDbl

Print "myDbl =";myDbl
Print "myInt ="; myInt

Sleep
End