Skip to content

Instantly share code, notes, and snippets.

@kaosf
Forked from noqisofon/ls.d
Created April 11, 2012 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaosf/2360215 to your computer and use it in GitHub Desktop.
Save kaosf/2360215 to your computer and use it in GitHub Desktop.
execute "ls" command with D language (D 言語で ls コマンド実行)
// tested with DMD64 D Compiler v2.058
import std.process;
void main() {
system( "ls" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment