Rascal Language ReferenceStatementsAssignmentVariableOn this pageVariablerascal-0.40.17SynopsisAssign to a variable.DescriptionThe expression Exp is evaluated and its value is assigned to the variable Var.Examplesrascal>N = 3;int: 3rascal>N;int: 3