Can you provide some examples?
When i try to use this package, Color will never find:
import terminal;
auto terminal = new Terminal();
string color = "";
switch(type) {
case "INFO":
color = Background(Color.blue);
break;
case "ERROR":
color = Background(Color.red);
break;
default:
/* Do Nothing */
break;
}
Can you provide some examples?
When i try to use this package,
Colorwill never find: