| ConsoleEchoer.java |
package lectures.oegraphics;
import util.annotations.WebDocuments;
import util.misc.Console;
@WebDocuments({"Lectures/Oegraphics.pptx", "Lectures/Oegraphics.pdf", "Videos/Oegraphics.avi"})
public class ConsoleEchoer {
public static void main (String[] args) {
while (true) {
System.out.println(Console.readString());
}
}
}