Test1
runmode:0;
if true then
msgout(1,'1');
else if true then
msgout(1,'2');
else if true then
msgout(1,'3');
Test2
runmode:0;
if true then
msgout(1,'1');
else if true then
msgout(1,'2');
else if true then
msgout(1,'3');
cc:=ref(close,1);
Test1能通过编译,Test2不能通过编译,什么原因?
[此贴子已经被作者于2010-12-24 11:43:39编辑过]
cc:=ref(close,1); 放到最前面就可以了
以下是引用董小球在2010-12-24 13:28:21的发言:
cc:=ref(close,1); 放到最前面就可以了
为什么放到后面不行?