wr函数调用的例子

g_str="main";//全局的
public function  sayword(word){
   auto i;
   auto g_str="func:";//局部的
   for (i=1;i<=10;i++)
   print(g_str&i&"_"&word);   
}
for (i=1;i<=2;i++){
  g_str="part:";
  if (i==2) {
    print("___________________________");
  }
  sayword(g_str&i);
}
print()函数为额外打开一个新的窗口显示打印内容




本文转自 fish_yy 51CTO博客,原文链接:http://blog.51cto.com/tester2test/139576,如需转载请自行联系原作者
上一篇:less文件编译成微信小程序wxss文件


下一篇:套接字输入流——InputStream