changeset 3:15c4de0e2db2

add system.c
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 18 May 2012 15:36:14 +0900
parents f85060c91817
children 108812b08e75
files system.c
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/system.c	Fri May 18 15:36:14 2012 +0900
@@ -0,0 +1,10 @@
+#include <stdlib.h>
+
+char cmnd[] = "konoha /Users/aotokage/testProgram/konoha/math.k";
+
+int main() {
+
+	system(cmnd);
+
+	return 0;
+}