return Operating System name and version
OS=getos()
[OS,Version]=getos()
[OS,Version]=getos() returns Operating System name and version.
OS=getos()
[OS,version] = getos()
if (getos() == "Windows") then
`disp`_("Scilab on Windows");
end
if (getos() == "Linux") then
`disp`_("Scilab on Linux");
end
if (getos() == "SunOS") then
`disp`_("Scilab on Solaris");
end
if (getos() == "Darwin") then
`disp`_("Scilab on MacOs");
end