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