sry for my bad english
hello, guys. i have problem with zinc setup
what i am doing?
1. download jngp 5d (from link in 1st post)
2. and using it ;p
BUT. i dont know why
compiler shows syntax mystakes
zinc code (took from zinc manual) :

Zinc:
library Factorial
{
public function Factorial(integer n) -> integer
{
integer result=1, i;
for ( 1 <= i <= n)
result = result * i;
return result;
}
}
// o.o wtf red txt ???!!!
compiler shows me that:
can u tell me why ?