fn main() { let n = 1; let add = |x| { x + n }; let f = add; let v = 5; println!("Inc {} = {}", v, f(v)) }