Functions in Rust
Introduction
Like any other Programming language, functions are widely used in Rust. And in case you haven't realised, you were already using functions in Rust without knowing.
fn main() {
println!("Hello World");
}
fn main () is nothing but a f...
diptobiswas.hashnode.dev3 min read