-//<-- CLI SHELL MODE -->
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - INRIA
// This file is distributed under the same license as the Scilab package.
// =============================================================================
+// <-- CLI SHELL MODE -->
+// <-- NO CHECK REF -->
+
//exists
+// []
+assert_checkequal(exists([]),[]);
+assert_checkequal(exists([],"a"), []);
+assert_checkequal(exists([],"l"), []);
+assert_checkequal(exists([],"n"), []);
+
a=1;
assert_checkequal(exists('a'), 1);
clear a;