Supported platforms: ![Platform android.png](/images/4/45/Platform_android.png)
![Platform ios.png](/images/9/96/Platform_ios.png)
![Platform mac.png](/images/8/81/Platform_mac.png)
![Platform pc.png](/images/e/ef/Platform_pc.png)
![Platform linux.png](/images/1/17/Platform_linux.png)
Available since: Gideros 2017.10
Description
Divide a number to a whole number.
a=b // c, put the integer result of divide 'b' by 'c' into 'a'
Examples
a=b//c -- faster than a=math.floor(b/c)
Make an integer out of any numbers
b=5.123
a=b//1 -- result: a=5 (unique to Gideros!)