Skip to content

Instantly share code, notes, and snippets.

@ruwanka
Created March 11, 2018 13:48
Show Gist options
  • Save ruwanka/caa3c11148fae026ee4638e7b7c9da14 to your computer and use it in GitHub Desktop.
Save ruwanka/caa3c11148fae026ee4638e7b7c9da14 to your computer and use it in GitHub Desktop.
kotlin infix functions
fun main(args: Array<String>) {
println(2 powerTo 4)
}
infix fun Int.powerTo(to: Int): Double {
return Math.pow(this.toDouble(), to.toDouble());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment