17 lines
220 B
Plaintext
17 lines
220 B
Plaintext
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;
|
|
}
|