43 lines
691 B
HTML
43 lines
691 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
|
|
<title>OS$ [RCBasic Doc] </title>
|
|
</head>
|
|
|
|
<body>
|
|
<p><h2>function OS$() </h2></p>
|
|
<p>
|
|
Returns the runtimes native operating system.
|
|
</p>
|
|
<p>
|
|
Possible Return Values
|
|
</p>
|
|
<ul>
|
|
<li>
|
|
WINDOWS
|
|
</li>
|
|
<li>
|
|
LINUX
|
|
</li>
|
|
<li>
|
|
MAC
|
|
</li>
|
|
<li>
|
|
ANDROID
|
|
</li>
|
|
<li>
|
|
IOS
|
|
</li>
|
|
<li>
|
|
WEB
|
|
</li>
|
|
</ul>
|
|
<p>
|
|
Note: This specifically returns the OS$ the runtime was built for so if you have a windows executable running under wine this function will return "WINDOWS"
|
|
</p>
|
|
<p>
|
|
|
|
</body>
|
|
</html> |