Printing
The println statement must be the most used statement in this book or basically any scripting language books. Judo has three print statements, print , println and flush . They can all write texts to the system output streams, to an open text file or any textural output stream such as an internet connection. The flush command is exactly like print and it also flushes the output stream. The println prints the content and a new-line, and also flushes.
The
Print Into Variables
Using System Input and Output Streams
Read and Write Binary Files Sequentially
Random Access Files
|