Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
import java.util.LinkedList;
2
import java.util.List;
3
4
public class Jungle {
5
public static void main(String[] args) {
6
List<Bike> bikeStock = new LinkedList<Bike>();
7
}
8
}
9
10