Compiling playground v0.0.1 (/playground)
error[E0765]: unterminated double quote string
--> src/main.rs:2:14
|
2 | println!("Hello
| ______________^
3 | |
| |____^
For more information about this error, try `rustc --explain E0765`.
error: could not compile `playground` (bin "playground") due to 1 previous error
You should wrap your text within a double quote like this "Hello World!", not "Hello World"!. Also, remember to add a ; at the end of line. Lastly, remember to close your block.