Skip to content

Instantly share code, notes, and snippets.

@ymurase
Created December 25, 2014 08:37
Show Gist options
  • Save ymurase/403d52128a326bc6b8e3 to your computer and use it in GitHub Desktop.
Save ymurase/403d52128a326bc6b8e3 to your computer and use it in GitHub Desktop.
x10でsystemを呼ぶ
import x10.io.Console;
import x10.compiler.Native;
public class SystemTest {
public static def main(args:Rail[String]) {
{
@Native("c++", "system(\"ls\");") {}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment