fork download
  1. fun main() {
  2. println(10.plusThree())
  3. }
  4.  
  5. fun Int.plusThree(): Int {
  6. return this + 3
  7. }
  8.  
  9. /*
  10.   output : 13
  11. */
Success #stdin #stdout 0.09s 38132KB
stdin
fwp
stdout
13