1 2 3 4 5 6 7 8 9 10 11
|
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - INRIA - Allan CORNET
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
res = createGUID(1);
if length(res) <> 36 then bugmes();quit;end;
if size(tokens(res,'-'),'*') <> 5 then bugmes();quit;end;
res = createGUID(100);
if size(res,'*') <> 100 then bugmes();quit;end;
|