Trying to understand how AND statement works inside abs(numbers)
function.
Calling print(abs(21-22 and 9-4 and 11-8))
This would always give me whatever the last expression is. In this case it calculates 11-8, so it prints 3. Why other expressions are not in the output and no error as well?