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

25 行
505B

  1. /*
  2. * Vala Printer
  3. *
  4. * Copyright (c) 2019 Vala Printer. All Rights Reserved
  5. *
  6. * Everyone is permitted to copy and distribute verbatim or modified
  7. * copies of this license document, and changing it is allowed as
  8. * long as the name is changed.
  9. *
  10. * NO WARRANTY EXPRESS OR IMPLIED
  11. */
  12. /**
  13. * Prints a hello message to the console.
  14. *
  15. * @version 1.0 16 Sep 2019
  16. * @author Vala Printer
  17. */
  18. public class HelloWorld {
  19. public static void main(String[] args) {
  20. System.out.print("hello world!");
  21. }
  22. }