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 java.util.LinkedList; public class Main { public static void main(String[] args) { LinkedList
cars = new LinkedList
(); cars.add("Volvo"); cars.add("BMW"); cars.add("Ford"); // Use addFirst() to add the item to the beginning cars.addFirst("Mazda"); System.out.println(cars); } }
[Mazda, Volvo, BMW, Ford]