blob: a8a4741fcad5e59b55a5b684f9239628eaf2d0f8 (
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/syntax.md#constants)
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"
|