Return multiple values: Difference between revisions

Content added Content deleted
(→‎{{header|ANSI Standard BASIC}}: Changed to {{header|ANSI BASIC}}; {{works with|Decimal BASIC}}; output.)
Line 896: Line 896:
=={{header|EasyLang}}==
=={{header|EasyLang}}==
<syntaxhighlight lang="easylang">
<syntaxhighlight lang="easylang">
func addSubtract a b . sum diff .
proc addSubtract a b . sum diff .
sum = a + b
sum = a + b
diff = a - b
diff = a - b