Skip to content

Instantly share code, notes, and snippets.

@novaTopFlex
Created September 3, 2026 12:43
Show Gist options
  • Select an option

  • Save novaTopFlex/701be4aebf0b2db8a5b73ea2982b701f to your computer and use it in GitHub Desktop.

Select an option

Save novaTopFlex/701be4aebf0b2db8a5b73ea2982b701f to your computer and use it in GitHub Desktop.
British Isles Example in Java
public class App {
public static void main(String[] args) throws Exception {
System.out.println("England");
System.out.println("Scotland");
System.out.println("Wales");
System.out.println("Northern Ireland");
System.out.println("Republic of Ireland");
System.out.println("Jersey");
System.out.println("Guernsey");
System.out.println("Sark");
System.out.println("Gibraltar");
System.out.println("Herm");
System.out.println("Alderney");
System.out.println("Isle of Man");
System.out.println("Cayman Islands");
System.out.println("Turks and Caicos Islands");
System.out.println("Anguilla");
System.out.println("Montserrat");
System.out.println("Bermuda");
System.out.println("British Virgin Islands");
System.out.println("Canada");
System.out.println("Australia");
System.out.println("New Zealand");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment