摘要: #include <stdio.h>#include <tcl.h>main (int argc, char *argv[]) { Tcl_Interp *myinterp; int status; printf ("Your Tcl Program will run ... \n"); myinterp = Tcl_CreateInterp(); status = Tcl_EvalFile(myinterp,argv[1]); printf ("Your Tcl Program has completed\n");} 阅读全文
posted @ 2011-09-25 23:42 greencolor 阅读(159) 评论(0) 推荐(0)