Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUST

rust concatenate strings

let text1 = "hello".to_owned();
let text2 = text1 + " world";
println!("{}", text2);
 
PREVIOUS NEXT
Tagged: #rust #concatenate #strings
ADD COMMENT
Topic
Name
8+4 =