JAVA

hello world 출력하기

코린이도이 2023. 9. 10. 11:41
public class Main {
    public static void main(String args[]) {
        System.out.println("hello, world!");
    }
}