Bytes
This commit is contained in:
parent
bc52088b05
commit
ee087669af
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue