Scilab: fix some example scripts (missing exit)
This commit is contained in:
parent
2ce2862472
commit
f7b67980e6
5 changed files with 10 additions and 0 deletions
|
|
@ -39,5 +39,7 @@ disp("Call lib function concatStringVector()");
|
|||
stringVector2 = concatStringVector(stringVector);
|
||||
disp(stringVector2);
|
||||
|
||||
exit
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -29,3 +29,5 @@ disp("concat this set with the set of string {''cc'', ''dd'', ''ee'', ''ff''} wi
|
|||
ss3 = concat_string_set(ss, ss2);
|
||||
disp(ss3);
|
||||
|
||||
exit
|
||||
|
||||
|
|
|
|||
|
|
@ -33,3 +33,5 @@ disp(half(v));
|
|||
halve_in_place(v);
|
||||
disp(v);
|
||||
|
||||
exit
|
||||
|
||||
|
|
|
|||
|
|
@ -77,3 +77,5 @@ disp("concat this vector with the vector of pointers on object {<classA* a:5>, <
|
|||
pv3 = concat_classAPtr_vector(pv, pv2);
|
||||
print_classAPtr_vector(pv3);
|
||||
|
||||
exit
|
||||
|
||||
|
|
|
|||
|
|
@ -30,3 +30,5 @@ delete_SquareDouble(s);
|
|||
|
||||
printf("%i shapes remain\n", ShapeDouble_getNbShapes());
|
||||
|
||||
exit
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue