Flowdock
syswrite(p1) public

Writes the given string to ios using a low-level write. Returns the number of bytes written. Do not mix with other methods that write to ios or you may get unpredictable results. Raises SystemCallError on error.

   f = File.new("out", "w")
   f.syswrite("ABCDEF")   #=> 6
Show source
Register or log in to add new notes.