Determine whether Windows x64 version of Scilab (Windows only)
win64()
tf =win64() returns boolean (%t) for Windows x64 of Scilab and boolean (%f) otherwise.
if `getos`_() == 'Windows' then
if win64() then
`disp`_('Scilab built for Windows x64.');
else
`disp`_('Scilab built for Windows 32 bits.');
end
end