my shitty java code, from absolute basics to basics
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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