satellite/src/main.rs
2025-05-08 20:44:37 -04:00

21 lines
249 B
Rust

//! Rust Challenge
mod project;
/// Print the version of the project.
fn print_version()
{
println!("{} v{}", project::get_name(), project::get_version());
}
/// The usual starting point of your project.
fn main()
{
print_version();
}