writer
Writes data to a stream
Methods
print(any value) |
print the given value to a text stream |
println(any value) |
print the given value to a text stream followed by a newline |
write(any value) |
write the given value as a binary representation |
Method Documentation
Print the given value to a text stream
Parameters
- value (any) The value to print. If it is not a string it will be converted to a string representation
Print the given value to a text stream followed by a newline
Parameters
- value (any) The value to print. If it is not a string it will be converted to a string representation
Write the given value as a binary representation. Do not use this for a text stream.
Parameters
- value (any) The value to write
This work is licensed under a
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.