0 / 60 seg.

You have a function simple() that is called frequently in your code. You place the inline prefix on the function. What effect does it have on the code?

inline fun simple(x: Int): Int{
  return x * x
}
fun main() {
  for(count in 1..1000) {
    simple(count)
  }
}