blob: 939414f90bbe552230d1892da5d4ee5e429b7963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
exec loader.sce
exec builder.sce
exec test1.sce
exec test2.sce
exec test3.sce
if test1==1
exit(1)
elseif test2==1
exit(1)
elseif test3==1
exit(1)
else
disp("ALL OK")
exit()
end
|