mirror of
https://github.com/Dichgrem/Java.git
synced 2025-12-16 12:41:58 -05:00
8 lines
125 B
Java
8 lines
125 B
Java
package com.study.demo4;
|
|
|
|
class SmartLight extends HomeAppliance {
|
|
public SmartLight(String name) {
|
|
super(name);
|
|
}
|
|
}
|