[EMAIL PROTECTED] enlightened us with:
> i am new to learning jython...

And to python, obviously

> i just tried compiling a small piece of code that is given below:
>
> def fac(x)
>  if x<=1:return 1
>  return x*fac(x-1)

You need to write 'def fac(x):'.

Sybren
-- 
The problem with the world is stupidity. Not saying there should be a
capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself? 
                                             Frank Zappa
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to