Default function arguments in Rust

前端 未结 6 440
时光取名叫无心
时光取名叫无心 2020-12-13 05:38

Is it possible in Rust to create a function with a default argument?

fn add(a: int = 1, b: int = 2) { a + b }
6条回答
提交回复
热议问题