// This file is distributed under the same license as the Scilab package.
// =============================================================================
-// <-- JVM NOT MANDATORY -->
+// <-- CLI SHELL MODE -->
+
+wMode = warning("query");
+warning("off");
n = 50;
nstr = strcat(string(1:n),' ');
if a<>4|b<>'test'|c<>23.45 then pause,end
[a,b]=sscanf('123\n456','%e%e')
-if a<>123|b<>456 then pause,end
\ No newline at end of file
+if a<>123|b<>456 then pause,end
+
+warning(wMode);
\ No newline at end of file