7 lines
125 B
D
7 lines
125 B
D
import std.stdio, std.string;
|
|
|
|
void main() {
|
|
auto s = "alphaBETA";
|
|
writeln(s.toUpper());
|
|
writeln(s.toLower());
|
|
}
|