Skip to content

Instantly share code, notes, and snippets.

@noqisofon
Created April 11, 2012 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save noqisofon/2360205 to your computer and use it in GitHub Desktop.
Save noqisofon/2360205 to your computer and use it in GitHub Desktop.
D 言語で ls を実行してみるテスト。
#!/usr/bin/dmd -run
import std.stdio;
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