Hi, is it possible to break the body of an "if"? something like:
-------------- if $fU == "alice" { xlog "hello"; break; xlog "bye"; } xlog "this is after the 'if'" --------------
So the result would be:
------- hello this is after the 'if' -------
Is it possible?