函数

void add3AndPrint(int value) {
    NSLog(@"%d", value + 3);
}

add3AndPrint(5);
//prints 8