Not guaranteed to work on non-Windows (Posix does not unify this). ```d void main(string[] args) { import std.process : browse; import std.path : dirName; browse(args[0].dirName); } ```