-
-
Save kaosf/2360215 to your computer and use it in GitHub Desktop.
execute "ls" command with D language (D 言語で ls コマンド実行)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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