Skip to content

Commit

Permalink
Update docs/docs/language_concepts/data_types/03_strings.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher authored Nov 28, 2023
1 parent 433f7bd commit 498171e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/docs/language_concepts/data_types/03_strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,7 @@ Example:
```rust
let s = r"Hello world";
let s = r#"Simon says "hello world""#;

// Any number of hashes may be used (>= 1) as long as the string also terminates with the same number of hashes
let s = r#####"One "#, Two "##, Three "###, Four "####, Five will end the string."#####;
```

0 comments on commit 498171e

Please sign in to comment.