blob: 94c0a81da472b4dce97ce8d83402529d926e8338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/string.html).*
# Double Quote (`"`)
## `"str"`: String
[→full documentation](../doc/token.md#characters-and-strings)
Literal notation for a string, or list of characters. Double quotes must be escaped by writing them twice. Any other characters can be included directly.
2 ⊑ "string"
2 ⊑ "ab""cd"
|