RosettaCodeData/Task/String-case/D/string-case.d
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

7 lines
125 B
D

import std.stdio, std.string;
void main() {
auto s = "alphaBETA";
writeln(s.toUpper());
writeln(s.toLower());
}