package com.kook.ch15Project; public class Ex15_13 { public static void main(String[] args) { System.out.println("out : Hello World!"); //표준 출력 out 사용, PrintStream객체 System.err.println("err : Hello World!"); //표준 출력 err 사용, PrintStream객체, (출력시 붉은색으로 출력된다.) } }