리눅스 자바 Hello World

Jmnote (토론 | 기여)님의 2019년 3월 27일 (수) 17:43 판 (→‎같이 보기)

1 개요

testuser@ubuntu:~$ mkdir hello
testuser@ubuntu:~$ cd hello/
testuser@ubuntu:~/hello$ vi Main.java
public class Main {
        public static void main(String[] args) {
                System.out.println("My First Java");
        }
}
testuser@ubuntu:~/hello$ ls
Main.java
testuser@ubuntu:~/hello$ javac Main.java 
testuser@ubuntu:~/hello$ ls
Main.class  Main.java
testuser@ubuntu:~/hello$ java Main
My First Java

2 같이 보기

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