Scilab: fix some example scripts (missing exit)

This commit is contained in:
Simon Marchetto 2013-07-19 16:38:52 +02:00
commit f7b67980e6
5 changed files with 10 additions and 0 deletions

View file

@ -39,5 +39,7 @@ disp("Call lib function concatStringVector()");
stringVector2 = concatStringVector(stringVector);
disp(stringVector2);
exit

View file

@ -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

View file

@ -33,3 +33,5 @@ disp(half(v));
halve_in_place(v);
disp(v);
exit

View file

@ -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

View file

@ -30,3 +30,5 @@ delete_SquareDouble(s);
printf("%i shapes remain\n", ShapeDouble_getNbShapes());
exit