Supported platforms: Available since: Gideros 2017.10
Divide a number to a whole number.
a=b // c Put the integer result of divide 'b' by 'c' into 'a'.
Simple example
a=b//c -- faster than a=math.floor(b/c)