String Literal

let community\_name = "AXIAL";
let no\_of\_members: &str = "ten";
println!("The name of the community is {community\_name} and it has {no\_of\_members} members");

See: Strings

Comments