We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c51dcab commit 0274eaeCopy full SHA for 0274eae
README.md
@@ -299,7 +299,7 @@ between either a single quote or a double quote. When characters are between dou
299
are interpolated, meaning they have expressions evaluated within them. These expressions start
300
with the dollar character. All strings can span multiple lines.
301
302
-```js
+```rust
303
let string = 'Hello World!'; // literal string
304
let template = "The sum of 1 and 2 is ${1 + 2}"; // interpolated string
305
let concat = "The sum of 1 and 2 is " + (1 + 2); // concatenation
0 commit comments