fork(3) download
  1. object Main {
  2. import scala.math.pow
  3. implicit class PowerInt(i: Int) {
  4. def ** (n: Int): Int = pow(i, n).intValue
  5. }
  6. def main(args: Array[String]) {
  7. println(5**6)
  8. }
  9. }
Success #stdin #stdout 0.31s 322240KB
stdin
Standard input is empty
stdout
15625