5 lines
72 B
Mathematica
5 lines
72 B
Mathematica
function result = doubleInt(number)
|
|
|
|
result = times(2,number);
|
|
|
|
end
|