This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
|
module command.remoteundostatus.light;
|
|
|
|
import std.stdio : writeln;
|
|
|
|
class Light
|
|
{
|
|
private string location;
|
|
|
|
this(string location)
|
|
{
|
|
this.location = location;
|
|
}
|
|
|
|
void on()
|
|
{
|
|
writeln(location ~ " light is On");
|
|
}
|
|
|
|
void off()
|
|
{
|
|
writeln(location ~ " light is Off");
|
|
}
|
|
}
|