bas7ex.hlp (Topic list)
CLNG Function Programming Example
                       Example                 Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
'This example uses the CLNG function to round a number before converting it
'to a long integer.
 
A=32767.45
B=32767.55
PRINT CLNG(A); CLNG(B)
 
'Sample Output
'
' 32767  32768