Int Function
Devuelve la parte entera d'un númberu.
Int (Númberu)
Double
Númberu: Cualquier espresión numbéricu válidu.
5 Llamada a procedimientu non válida
Sub ExampleInt
Print Int(3.99) ' devuelve'l valor 3
Print Int(0) ' devuelve'l valor 0
Print Int(-3.14159) ' devuelve'l valor -4
End Sub