자바프로그래밍

[자바프로그래밍] Hello World!

제주도소년 2019. 5. 3. 11:05

한동안 프로그래밍을 안하다보니까 .. 다 잊어버릴꺼 같았다 ..

 

1

2

3

4

5

public class Main {

    public static void main(String[] args) {

        System.out.println("Hello World!");

    }

}