A+B: Difference between revisions

162 bytes added ,  7 months ago
add example for SmallBASIC
imported>J7M
(add example for SmallBASIC)
Line 5,251:
END;
END.
</syntaxhighlight>
 
=={{header|SmallBASIC}}==
<syntaxhighlight lang="SmallBASIC">
input "Enter number A: "; a
input "Enter number B: "; b
print "A + B = "; a + b
</syntaxhighlight>
 
Anonymous user