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