my shitty java code, from absolute basics to basics
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

25 lignes
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. }