Closed
Description
fn main() {
println!('{}', 5);
}
This error leaves much to be desired:
hello.rs:2:14: 2:16 error: unterminated character constant: '{
hello.rs:2 println!('{}', 5);
^~
The issue is that you need double quotes.
originally found in http://joelmccracken.github.io/entries/a-simple-web-app-in-rust-pt-2b/ /cc @joelmccracken