Hello,world
hell world
新建一个文件夹
新建一个Java文件

编写代码
public class hello{
public static void main(String[]args){
System.out.print("hello,world!");
}
}
编译 Javac +文件名,生成一个class文件,
运行 Java.class

运行成功!

新建一个文件夹
新建一个Java文件

编写代码
public class hello{
public static void main(String[]args){
System.out.print("hello,world!");
}
}
编译 Javac +文件名,生成一个class文件,
运行 Java.class

运行成功!
