return
return stops the current function or method and returns the value to the caller.
fun add_one(b: Bool): Int { if b { return 42 } 0 }