named return value

naked return

func split(sum int) (x, y int) {
 x = sum * 4 / 9
 y = sum - x
 return
}

decrea var

var hoge

hage:=1