Функции

func add3AndPrint(value int) {
    fmt.Println(value + 3);
}

add3AndPrint(5)