This commit is contained in:
Daniel Flanagan 2023-10-27 10:49:38 -05:00
parent bc52088b05
commit ee087669af
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4

View file

@ -1,7 +1,9 @@
/// a doc comment - use `cargo doc --open` to see it? /// a doc comment - use `cargo doc --open` to see it?
fn main() { fn main() {
let c: char = '\u{D1EA}'; let c: char = '\u{D1EA}';
let bytes = b"yoyoyo";
println!("Hello, world! {c}"); println!("Hello, world! {c}");
println!("Hello, bytes! {bytes:?}");
} }
// if I were to write a webapp, I would like to avoid postgres // if I were to write a webapp, I would like to avoid postgres