Hi Paul,

I do not know why your Scilab 5 code does not work in Scilab 6.
For long strings, the code might read more clearly by concatenating the 
different string with + sign as follows:


s = "" + ...

"printf(""Hello !\n""), " + ...

"";

execstr(s)



Another example:



s = "printf(""command#1\n""); " + ...

"printf(""Hello !\n""); " + ...

"printf(""command#3\n""); ";

execstr(s)

Regards,
Rafael
_______________________________________________
users mailing list
[email protected]
http://lists.scilab.org/mailman/listinfo/users

Reply via email to