Answers for "rust function"

0

rust function

fn main() {
    println!("Hello, world!");

    another_function();
}

fn another_function() {
    println!("Another function.");
}
Posted by: Guest on February-07-2022

Browse Popular Code Answers by Language