fn main() { fn inc(x: i64) -> i64 { x + 1 } let f = inc; let v = 5; println!("Inc {} = {}", v, f(v)) }