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

11 行
219B

  1. /** hello world
  2. * by vala, because everyone should start somewhere
  3. * copy as you like, it wont be any good
  4. */
  5. public class HelloWorld{
  6. public static void main(String[] args){
  7. System.out.print("hello world!");
  8. }
  9. }