# XR
Use xr()
to dump variables.
💡 Supports topic t
, emote e
and flags f
arguments.
# Dump variables
Use xr($var1, $var2,...)
to dump any variable(s).
xr($var, 'Hola, mundo!');
# Topic
Pass a topic using t:
.
xr($var, t: 'Epic win');
# Emote
Pass an emote using e:
.
xr($var, e: '😎');
# Flags
Pass bitwise flags to trigger special behavior.
f: XR_BACKTRACE
to include debug backtrace.
xr($var, f: XR_BACKTRACE);