RosettaCodeData/Task/A+B/LiveCode/a+b-1.livecode

8 lines
91 B
Plaintext

<?lc
if isNumber($0) and isNumber($1) then
put $0 + $1
else
put $0 && $1
end if
?>