Compute expressions
Define a new rule that can compute expressions and replace them with their values if they don't have any side effects.
For example:
local a = 17 + 3
----------------
local a = 20
local a = "Hello" .. "!"
----------------
local a = "Hello!"