Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
interface Bicycle {
2
3
// wheel revolutions per minute
4
void changeCadence(int newValue);
5
6
void changeGear(int newValue);
7
8
void speedUp(int increment);
9
10
void applyBrakes(int decrement);
11
}
12
13