freebasic-examples/src/conv.fb.bas

7 lines
101 B
QBasic
Raw Normal View History

2023-07-09 11:18:33 +00:00
Dim As Double myDbl
Dim As Integer myInt
myDbl = 5.56
myInt = myDbl
print "myInt = "; myInt
Sleep
End