Echo
Echo(expr)
prints the
expr
to the default output stream and returnsexpr
.
Echo(expr, label)
prints
label
before printingexpr
.
Echo(expr, label, head)
prints
label
before printinghead(expr)
and returnsexpr
.
Examples
>> {Echo(f(x,y)), Print(g(a,b))}{f(x,y),Null}
prints
f(x,y)g(a,b)
and returns
{f(x,y),Null}
Implementation status
- ✅ - full supported