Garden

fun keyword

fun defines functions and methods.

fun add_one(x: Int): Int {
  x + 1
}
fun (this: Int) increment(): Int {
  this + 1
}