poohbar
infix fun Float.pow(exp: Float) = Math.pow(this.toDouble(), exp.toDouble()).toFloat() fun main(args: Array<String>) { val x = 2f pow 2 + 1f }
2+1f