Run ❯
Get your
own Java
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
// Import the HashSet class import java.util.HashSet; public class Main { public static void main(String[] args) { HashSet
cars = new HashSet
(); cars.add("Volvo"); cars.add("BMW"); cars.add("Ford"); cars.add("BMW"); cars.add("Mazda"); for (String i : cars) { System.out.println(i); } } }
Volvo
Mazda
Ford
BMW