DIV

Quotient = Number AS Integer DIV Number AS Integer

Calculates the quotient of two Integer numbers, rounding down.

This is a synonymous for the \ operator.

Examples

PRINT 20 DIV 7, 21 DIV 7
2	3

See also