RosettaCodeData/Task/Inheritance-Single/ChucK/inheritance-single.chuck

16 lines
325 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
public class Drums{
//functions go here...
}
public class LatinKit extends Drums{
//functions go here...
}
public class ElectronicKit extends Drums{
//functions go here...
}
public class Congas extends LatinKit{
//functions go here...
}
public class TechnoDrums extends ElectronicKit{
//functions go here...
}