rhai
rhai copied to clipboard
Added rust-style raw string syntax support for the Rhai Tokenizer
Added support for Rust-style raw-string literal syntax in Rhai.
Example:
let example_raw_string: string = r##"I can use quotes and / and even one "# without escaping this string
How about we put a newline in it too!"##;