Clamp a number between two values.
This statement returns no value, it directly updates the given variable.
limit ?a min min max max
?a variable min min value max max value
Source for 1 to 5 as ?n ?m = ?n limit ?m min 2 max 4 print ?m nextExecution 2 2 3 4 4
