Difference between pages "Log" and "Open"

From Mesham
(Difference between pages)
Jump to navigationJump to search
m
 
 
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
  
This log(d) function will find the natural logarithmic value of ''d''
+
This open(n,a) function will open the file of name ''n'' with mode of ''a''.
  
* '''Pass:''' A double
+
* '''Pass:''' The name of the file to open of type [[String]] and mode of type [[String]]
* '''Returns:''' A double representing the logarithmic value
+
* '''Returns:''' A file handle of type [[File]]
  
 
== Example ==
 
== Example ==
  
  #include <maths>
+
  #include <io>
  var a:=log(10.54);
+
   
var y:=log(a);
+
function void main() {
 +
    var f:=open("myfile.txt","r");
 +
    close(f);
 +
};
 +
 
 +
''Since: Version 1.0''
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
[[Category:Maths Functions]]
+
[[Category:IO Functions]]

Revision as of 14:36, 15 April 2013

Overview

This open(n,a) function will open the file of name n with mode of a.

  • Pass: The name of the file to open of type String and mode of type String
  • Returns: A file handle of type File

Example

#include <io>

function void main() {
   var f:=open("myfile.txt","r");
   close(f);
};

Since: Version 1.0