Syntax Lookup

Enter some language construct you want to know more about.
This is the let binding keyword.

let is used to bind values to names, which is similar to assigning values to variables in other languages.

Example

ReScriptJS Output
let greeting = "hello!"
let score = 10
let newScore = 10 + score

References