Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
Basket b1 = new Basket<Orange>();
2
b1.setElement(new Apple());
3
Apple apple = (Apple) b1.getElement();
4
5