Functions

add3_and_print(5);

fn add3_and_print(value: i32) {
    print!("{}", value + 3);
}