Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
class Fruit {
2
}
3
4
class Apple extends Fruit {
5
}
6
7
class Orange extends Fruit {
8
}
9
10