Functions

func add3AndPrint(value: Int) {
    print(value + 3)
}

add3AndPrint(value: 5)