Difference between revisions of "Input"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == This input[n] function will ask the user for input via stdin, the result being placed into ''n'' * '''Pass:''' A variable for the input to be written into, of ty…')
 
m (5 revisions imported)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
  
This input[n] function will ask the user for input via stdin, the result being placed into ''n''
+
This input(i) function will prompt the user for input via stdin, the result being placed into ''i''
  
* '''Pass:''' A variable for the input to be written into, of type String
+
* '''Pass:''' A variable for the input to be written into, of type [[String]]
 
* '''Returns:''' Nothing
 
* '''Returns:''' Nothing
  
 
== Example ==
 
== Example ==
  
  var f:String;
+
  #include <io>
input[f];
+
print[f,"\n"];
+
function void main() {
 +
    var f:String;
 +
    input(f);
 +
    print("You wrote: "+f+"\n");
 +
};
 +
 
 +
''Since: Version 0.41b''
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:IO Functions]]
 
[[Category:IO Functions]]

Latest revision as of 15:44, 15 April 2019

Overview

This input(i) function will prompt the user for input via stdin, the result being placed into i

  • Pass: A variable for the input to be written into, of type String
  • Returns: Nothing

Example

#include <io>

function void main() {
   var f:String;
   input(f);
   print("You wrote: "+f+"\n");
};

Since: Version 0.41b