Difference between pages "Download rtl 0.2" and "Asin"

From Mesham
(Difference between pages)
Jump to navigationJump to search
 
 
Line 1: Line 1:
<metadesc>Mesham is a type oriented programming language allowing the writing of high performance parallel codes which are efficient yet simple to write and maintain</metadesc>
+
== Overview ==
{{Applicationbox|name=Runtime library 0.2|author=[[User:polas|Nick Brown]]|desc=The runtime library required for Mesham 0.5.|url=http://www.mesham.com|image=Runtimelibrary.png|version=0.2|released=January 2010}}
 
''Please Note: This version of the runtime library is deprecated but required for [[Download_0.5|Mesham 0.5]]''
 
== Runtime Library Version 0.2 ==
 
  
Version 0.2 is currently the most up-to-date version of the Mesham RTL and is required by Mesham 0.5. This version of the library contains many advantages and improvements over the previous version and as such it is suggested you use this. The version on this page is backwards compatable to version 0.41(b). This version does not explicitly support the Windows OS, although it will be possible for an experienced programmer to install it on that system.
+
The asin(d) function will find the inverse sine of the value or variable ''d'' passed to it.
  
== Download ==
+
* '''Pass:''' A [[Double]] to find the inverse sine of
  
You can download the [http://www.mesham.com/downloads/libraries2.tar.gz Runtime Library 0.2 here] (28KB)
+
* '''Returns:''' A [[Double]] representing the inverse sine
  
== Instructions ==
+
== Example ==
  
Detailed installation, usage and options instructions are included with the library. Additionally these can be found on the [[Download 0.5|Download 0.5 Package]] page.
+
#include <maths>
 +
 +
function void main() {
 +
    var d:=asin(23);
 +
    var y:=asin(d);
 +
};
 +
 
 +
''Since: Version 1.0''
 +
 
 +
[[Category:Function Library]]
 +
[[Category:Maths Functions]]

Revision as of 14:32, 15 April 2013

Overview

The asin(d) function will find the inverse sine of the value or variable d passed to it.

  • Pass: A Double to find the inverse sine of
  • Returns: A Double representing the inverse sine

Example

#include <maths>

function void main() {
   var d:=asin(23);
   var y:=asin(d);
};

Since: Version 1.0