Functions

using System;

void add3AndPrint(int value) {
    Console.WriteLine(value + 3);
}

add3AndPrint(5);