blob: 7c95174e37fe9649a6e76eb12ccd3a81de3b3830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// A comment with whites and tabulations
// Email: <scilab.support@scilab.org>
// Scilab editor: http://www.scilab.org/
function [a, b] = myfunction(d, e, f)
a = 2.71828 + %pi + f($, :);
b = cos(a) + cosh(a);
if d == e then
b = 10 - e.field;
else
b = " test " + home
return
end
myvar = 1.23e-45;
endfunction
|