Return multiple values: Difference between revisions

Added functionally identical alternative to clarify comment.
imported>Thebeez
(Added uBasic/4tH version)
imported>Thebeez
(Added functionally identical alternative to clarify comment.)
Line 472:
<syntaxhighlight lang="qbasic">a = FUNC (_MulDiv (33, 11))
b = Pop()
 
Print "a * b = ";a, "a / b = ";b
 
Push 33, 11 : Proc _MulDiv
a = Pop() : b = Pop()
 
Print "a * b = ";a, "a / b = ";b
Line 483 ⟶ 488:
{{Out}}
<pre>a * b = 363 a / b = 3
a * b = 363 a / b = 3
 
0 OK, 0:75226 </pre>
 
=={{header|BQN}}==
Anonymous user