Difference between revisions of "Input"

From Mesham
Jump to navigationJump to search
m
m (5 revisions imported)
 
(2 intermediate revisions by the same user not shown)
Line 9: Line 9:
  
 
  #include <io>
 
  #include <io>
  var f:String;
+
   
input(f);
+
function void main() {
print("You wrote: "+f+"\n");
+
    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