ios.syswrite(string) รข integer
Instance Public methods
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
Please login to continue.