您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

HelloWorld.java 191B

123456789101112
  1. package example;
  2. public class HelloWorld {
  3. public static void say(String msg) {
  4. System.err.println(msg);
  5. }
  6. public static void main(String []argv) {
  7. say("hello world");
  8. }
  9. }