OnJava8-Examples/standardio/ChangeSystemOut.java
2015-11-14 16:18:05 -08:00

15 lines
331 B
Java

// standardio/ChangeSystemOut.java
// ©2016 MindView LLC: see Copyright.txt
// Turn System.out into a PrintWriter.
import java.io.*;
public class ChangeSystemOut {
public static void main(String[] args) {
PrintWriter out = new PrintWriter(System.out, true);
out.println("Hello, world");
}
}
/* Output:
Hello, world
*/