rhai icon indicating copy to clipboard operation
rhai copied to clipboard

Added rust-style raw string syntax support for the Rhai Tokenizer

Open cellomath opened this issue 5 months ago • 7 comments

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!"##;

cellomath avatar Aug 27 '24 02:08 cellomath