5 lines
66 B
Mathematica
5 lines
66 B
Mathematica
|
function [a, b] = afunc(c, d)
|
||
|
% A function
|
||
|
a = c + 1;
|
||
|
b = d + 10;
|