template_rust_project/
main.rs

1//! A first template piece of code for example.
2//!
3//! See [`String`](std::string::String) documentation for more details.
4
5// a simple hello world program
6fn main() {
7    println!("Hello, world!");
8    println!("Welcome to using Rust project template.");
9}