Syntax Lookup

Enter some language construct you want to know more about.
This is the string literal syntax.

A string literal is composed of two double quotes. Single quotes are reserved for the char type.

Example

ReScriptJS Output
let myString = "Single line " ++ "string!"
let myMultiLineString = "Multi
 line
 string!"

References