PI

Ratio of the circumference of a circle to its diameter, approximately 3.14159.

const val PI: Double = 3.141592653589793(source)
import kotlin.math.PI

fun main() {
    val radius = 5.0
    val circumference = 2 * PI * radius
    println("Circumference: $circumference")
}

Source