Input

From Mesham
Revision as of 22:22, 10 January 2010 by Polas (talk | contribs) (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…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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 type String
  • Returns: Nothing

Example

var f:String;
input[f];
print[f,"\n"];