7 lines
101 B
QBasic
7 lines
101 B
QBasic
|
Dim As Double myDbl
|
||
|
Dim As Integer myInt
|
||
|
myDbl = 5.56
|
||
|
myInt = myDbl
|
||
|
print "myInt = "; myInt
|
||
|
Sleep
|
||
|
End
|