RosettaCodeData/Task/Unix-ls/D/unix-ls.d

7 lines
197 B
D
Raw Permalink Normal View History

2015-02-20 09:02:09 -05:00
void main() {
2018-06-22 20:57:24 +00:00
import std.stdio, std.file, std.path, std.array, std.algorithm;
2015-02-20 09:02:09 -05:00
2018-06-22 20:57:24 +00:00
foreach (const string path; dirEntries(getcwd, SpanMode.shallow).array.sort)
2015-02-20 09:02:09 -05:00
path.baseName.writeln;
}