Java 헬로우 월드

Jmnote (토론 | 기여)님의 2022년 12월 24일 (토) 11:33 판 (→‎개요)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

Java 헬로우 월드
public class HelloWorld {
    public static void main(String [] args) {
        System.out.println("Hello World!");
    }
}
// https://docs.oracle.com/javase/tutorial/getStarted/application/index.html
class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Display the string.
    }
}
public class App {
    public static void main(String[] args) throws Exception {
        System.out.println("Hello, World!");
    }
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}