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