화면에 글자 출력하기 1. sysout (; 템플릿) Ctrl+space 자동완성 기능을 사용해 문장 만들기 2. println("Hello"); 작성 > 실행 3. console 창 Hello 문구 노출 확인 단축기 변경하기 1. Windows > Preferences > JAVA > Editor > Templates 2. 등록된 템플릿 중 (알파벳 순으로 정렬) 변경하고 싶은 것 변경 1. Windows > Preferences > General > Keys 2. Copy Lines 검색 > 변경하고 싶은 키 변경 줄바꿈 처리 1. 출력 후에 줄바꿈 적용되는 println System.out.println("Hello") System.out.println("Hello") System.out.print..