Rust_Examples_and_Notes/general_code/000_println.rs

9 lines
171 B
Rust
Raw Normal View History

2021-10-19 13:02:08 +00:00
//https://doc.rust-lang.org/rust-by-example/hello/print.html
fn main() {
// Comment
/* Multi line */
println!("Printed text.");
print!("No new line.");
}