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

8 lines
91 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<?lc
if isNumber($0) and isNumber($1) then
put $0 + $1
else
put $0 && $1
end if
?>