REM

REM


RELEASE Index Level REM
Syntax REM( dividend, divisor )
Category BASIC
Type Function
Description returns the remainder portion of the result of dividing one number by another.

There is no limitation on the numeric value of the dividend or divisor.  The "rem" and "mod" functions are identical.  
Options
See Also statements & functions MOD NOT CHAR functions \
Example for i = 1 to lines
 print rec<i>
 if not(rem(i,60)) then print char(12):
next i
"rem" is used to find the end of a page.  Every 60 lines, a form feed, char(12), is printed.
Warnings
Compatibility D3 7.0 AP R83
RELEASE Index Level REM