Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 497 Bytes

IO.md

File metadata and controls

20 lines (13 loc) · 497 Bytes

IO Library

As requested by Skippy I have created a document on how to use the IO library.

Reading a String from a given InputStream

To read a String from a given InputStream (say now xIn) use the following code:

String response = IO.readCommand(xIn);

Writing a String to a given OutputStream

To write a String (say now xString) to a given OutputStream (say now xOut) use the following code:

IO.sendCommand(xOut, xString)