From ee087669af3e475563e5db9b73626ef29e7c1214 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Fri, 27 Oct 2023 10:49:38 -0500 Subject: [PATCH] Bytes --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 9ceb271..e14f506 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,9 @@ /// a doc comment - use `cargo doc --open` to see it? fn main() { let c: char = '\u{D1EA}'; + let bytes = b"yoyoyo"; println!("Hello, world! {c}"); + println!("Hello, bytes! {bytes:?}"); } // if I were to write a webapp, I would like to avoid postgres