This is a simple boolean function. It takes N numeric strings; if any is "1" then this returns "1". Otherwise, it returns "0". The @or function also exhibits "short-circuiting": if any argument is "1", arguments after that will not be evaluated. Usage: @or("1", "1") @or(@eq("a", "b"), @eq("a", "a")) @or("1", @tell("%#", "Not displayed."))