' -> cbyte example, rounded numbers or converting strings
' halProment
'
'dim cb as cbyte

cbyte cb 
cb=45.2 ' 45
print cb

cb=72.6
print cb ' 73

cb="-72"
print cb ' -72 

cb="-122.5"
print cb ' -123 

cb=255
print cb '-1 

cb=260
print cb '4

