freebasic-examples/src/conv.fb.bas
2023-07-09 12:18:33 +01:00

7 lines
101 B
QBasic

Dim As Double myDbl
Dim As Integer myInt
myDbl = 5.56
myInt = myDbl
print "myInt = "; myInt
Sleep
End