summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/test081_twoFunctions/scilabcode/fun2.sci
blob: 56a2f16228f38f28596b0664f8cc082292c6c56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//SCI2C: NIN=          1
//SCI2C: NOUT=         1
//SCI2C: OUT(1).TP=    IN(1).TP
//SCI2C: OUT(1).SZ(1)= '1'
//SCI2C: OUT(1).SZ(2)= '1'

//SCI2C: DEFAULT_PRECISION= DOUBLE
function out = fun2(in1)
a = 999;
disp("a");
disp(a);
b = fun1(1);
out = 99;
endfunction