_Added in 1.9.0_ *$(text,[N])* Evaluates the contents of text N times. _Same as [[$eval]]_ *Parameters* text - The text to evaluate. [N] - If N is not specified, the default is N = 1. If N is zero, text is not evaluated.. (optional) *Example*
; Evaluate 0 times.
//echo -ag $($ $+ me, 0)

; Evaluate 1 time.
//echo -ag $($ $+ me)

; Evaluate 2 times.
//echo -ag $($ $+ me, 2)