Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

HelloWorld.java 157B

12345678
  1. public class HelloWorld {
  2. public static void main (String[] args) throws Exception {
  3. System.out.println("Hello World!");
  4. throw new Exception();
  5. }
  6. }