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

8 lines
91 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
<?lc
if isNumber($0) and isNumber($1) then
put $0 + $1
else
put $0 && $1
end if
?>