1 // ====================================================================
2 // Template toolbox_skeleton
3 // This file is released under the 3-clause BSD license. See COPYING-BSD.
4 // ====================================================================
7 function scilab_error(varargin)
9 argSize = size(varargin);
12 error(msprintf(_("toolbox_skeleton", "%s: I''m waiting for only one argument.\n"), "scilab_error"));
16 error(msprintf(gettext("toolbox_skeleton", "%s: Yeah! %d is a good number of arguments but I prefer fail, sorry.\n"), "scilab_error", 1));
19 // ====================================================================