# = — initialization and assignment [Syntax and values](README.md) ## Behavior and details A single = separates target and value in let and set. It is not an expression operator; plain name = value is invalid. Use == to compare. The right-hand value is evaluated before assignment-target indices. ## Example ```pliro # language: en let score = 1 set score = score + 1 say score == 2 ``` ## Related entries [Syntax and values](README.md) · [Built-ins](../builtins/README.md) · [Programming guides](../guides/README.md)