module examples.fibonacci; behavior Fibonacci10 { int fib(int n){ // delay to slow down the computations try {Thread.sleep(50);} catch (InterruptedException e){}; if (n<=2) return 1; else return fib(n-1)+fib(n-2); } void act(String arguments[]){ int n = 10; Fibonacci10[] fibs = new Fibonacci10[10]; for (int i=0;i