summaryrefslogtreecommitdiffstats
path: root/test/cbot/scenarios/bugmw.txt
blob: 284ee43fd9e176c41027fe5ed3cd11dc802a4edb (plain)
1
2
3
4
5
6
7
8
9
extern public void main()
{
  show(fact(30)) ;
}

public int fact(int n)
{
  return (fact(n-1)*n) ;
}