/**
* Estou declarando a variavel saida tipo PrintStream;
* Faço isso porque out de System é tipo PrintStream;
*/
PrintStream saida;
/**
* saida recebe System.out;
*/
saida = System.out;
/**
* o mesmo que System.out.println("Olá");
*/
saida.println("Olá");