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

HelloWorld.java 590B

123456789101112131415161718192021222324
  1. /* Copyright (c) 2002 Contributors.
  2. *
  3. * This program and the accompanying materials are made available
  4. * under the terms of the Eclipse Public License v 2.0
  5. * which accompanies this distribution and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors:
  9. * PARC initial implementation
  10. */
  11. package org.aspectj.weaver.test;
  12. /**
  13. * @version 1.0
  14. * @author
  15. */
  16. public class HelloWorld {
  17. public static void main(String[] args) {
  18. System.out
  19. .println("hello world");
  20. //System.out.println("hello world");
  21. }
  22. }