let by_ref = fun (&x int) -> *x + 1; let by_value = fun (x: int) -> x + 1;