From bc52088b053c01fc7c1e4cbf68501cb656526e49 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Fri, 27 Oct 2023 10:18:47 -0500 Subject: [PATCH] Funky chars --- Cargo.lock | 2 +- src/main.rs | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52f2a73..da15124 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,5 +3,5 @@ version = 3 [[package]] -name = "learnrust" +name = "lriamol" version = "0.1.0" diff --git a/src/main.rs b/src/main.rs index d5746f0..9ceb271 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,9 @@ /// a doc comment - use `cargo doc --open` to see it? fn main() { - println!("Hello, world!"); + let c: char = '\u{D1EA}'; + println!("Hello, world! {c}"); } + +// if I were to write a webapp, I would like to avoid postgres +// not because postgres is bad, but I want to tinker with embeddable DBs such +// as RocksDB