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