WLJS LogoWLJS Notebook

Let

Written by Leonid Shifrin

Let[{vars__}, expr_]

A With-like construction that allows recursive assignments, like Let* in scheme.

For example:

Let[{
	a = 1,
	b = a + 1
},
	b
]