kotlin double à int

// Make a double number and store it in value "double"
val double: Double = 1.3459808235
// Convert the double to and interger and store it in value "int"
val int : Int = double.toInt()
Xeniox