Replies: 1 comment
-
Correct. Raw strings are for when you don't want to employ escape sequences, for example a multiline string, or when you want to want to employ them as-is, like If you want to include a backtick in a raw string, you can break it up into two raw strings and concatenate it with a regular one. raw_with_backtick := `Hellope` + "`" + `there` |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
kind simple, but I do not see any about tick in tick.
https://github.com/odin-lang/examples/blob/master/strings/basic_string_example.odin
https://odin-lang.org/docs/overview/
Raw string literals are enclosed in single back ticks.
how to include tick in a ticked string?
abc \
' ?ab``c
?a`b
?so no one use tick in tick?
Beta Was this translation helpful? Give feedback.
All reactions