WLJS LogoWLJS Notebook

Set

lhs = rhs evaluates rhs and assigns the result to be the value of lhs.

Examples

Assign a value:

x = 5
x
(* 5 *)

Multiple assignments:

{a, b} = {1, 2}
a
(* 1 *)

Please visit the official Wolfram Language Reference for more details.

On this page