import std::print; import std::String; fn main() { let mut test = String::from("hello"); test.push(String::from(" world: ")); test.push_num("hello"); print(test); test.free(); return; }