11.12.2009, 12:39
you did perhaps have something like this:
and when you commented that out, it became that:
if you take a look again at that now:
PHP код:
if (...)
{
myfunc();
leetcode();
/*stopserver();
killserver();
killworld();*/
}
PHP код:
/*if (...)
{
myfunc();
leetcode();
/*stopserver();
killserver();
killworld();*/
}*/
Код:
/*if (...) <= comment start here { myfunc(); leetcode(); /*stopserver(); <= ignored start killserver(); killworld();*/ <= comment end }*/ compiler is confused.