patterns/command/remoteundostatusmacro/light.d

24 lines
336 B
D
Raw Permalink Normal View History

2022-12-05 07:38:19 +00:00
module command.remoteundostatusmacro.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");
}
}