5 lines
90 B
Mathematica
5 lines
90 B
Mathematica
function x=f(a,b,sep)
|
|
x = [a,sep,b];
|
|
return;
|
|
end;
|
|
f('Rosetta', 'Code', ':')
|