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.
1 2 | f = File . new ( "out" , "w" ) f.syswrite( "ABCDEF" ) #=> 6 |
Please login to continue.