RosettaCodeData/Task/Unix-ls/D/unix-ls.d
2018-06-22 20:57:24 +00:00

6 lines
197 B
D

void main() {
import std.stdio, std.file, std.path, std.array, std.algorithm;
foreach (const string path; dirEntries(getcwd, SpanMode.shallow).array.sort)
path.baseName.writeln;
}