id | keywords | name | summary | category | ||
---|---|---|---|---|---|---|
string-delimiter |
|
"" |
This is the `string` delimiter. |
languageconstructs |
The string
delimiter is composed of two double quotes. Single quotes are reserved for the char
type.
<CodeTab labels={["ReScript", "JS Output"]}>
let myString = "Single line " ++ "string!"
let myMultiLineString = "Multi
line
string!"
var myString = "Single line string!";
var myMultiLineString = "Multi\n line\n string!";