MCPcopy Create free account
hub / github.com/bedroombuilds/python2rust / main

Function main

04_strings_unicode/rust/multiline.rs:1–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1fn main() {
2 let more = "many
3lines
4 whitespace"
5 .to_string();
6 println!("{}", more);
7
8 let escape = " blah \"\"\" escaped '
9newline
10\n
11test
12"
13 .to_string();
14 println!("{}", escape);
15
16 let single_char = 'a';
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected