Writestring

From Mesham
Revision as of 13:15, 13 January 2013 by Polas (talk | contribs)
Jump to navigationJump to search

Overview

This writestring(f,a) function will write the value of a to the file denoted by handle f.

  • Pass: The File handle to write to and the String to write
  • Returns: Nothing

Example

#include <io>
var f:=open("hello.txt","w");
writestring(f,"hello - test");
close(f);