-
-
Save noqisofon/2360205 to your computer and use it in GitHub Desktop.
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
#!/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