dump — Dumps values of the given variable, or the entire data if nothing provided
var: the variable to display, by default it shows the current scope
Examples:Where template is: Both syntax will work {$rate|dump} or {dump $rate}
{math equation="10*(2/5)" assign=amount}
{dump $amount}
{math equation="10*(2/5)" assign=rate}
{$rate|dump}
The above example will output:
4.0
6.0