Writebinary

From Mesham
Revision as of 13:16, 13 January 2013 by Polas (talk | contribs) (Created page with '== Overview == This writebinary(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 Int v…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Overview

This writebinary(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 Int variable or value to write into the file in a binary manner
  • Returns: Nothing

Example

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