TRIAL 1 

In C:
  time ./reffib 20 200000
  0.48user 0.01system 0:00.51elapsed 96%CPU (0avgtext+0avgdata 0maxresident)k


In Java inx:
   (fib-loop 20 200000)
   ;Evaluation took 5780 mSec (0 in scm_gc) 13 cells work, 1069 bytes other


In Scheme:
  (reference-fib-loop 20 2000)
  ;Evaluation took 95920 mSec (32570 in scm_gc) 20799517 cells work, 37 bytes other


In Tcl:
	time {fib_loop 20 2000} 1
	10581855 microseconds per iteration
	x 100 == 1058185500 mSec



C : Java : Scheme :   Tcl

1 :  12  :  200	  : 2204553
      1  :   17   :   73029
	      1   :   12025



 
TRIAL 2

In C:
  time ./reffib 20 100000
  0.24user 0.02system 0:00.26elapsed 100%CPU (0avgtext+0avgdata 0maxresident)k
	240 ms


In Java inx:
  (fib-loop 20 100000)
  ;Evaluation took 2890 mSec (0 in scm_gc) 13 cells work, 1069 bytes other
  6765


In Scheme:
  (reference-fib-loop 20 100000)
  ;Evaluation took 46860 mSec (16610 in scm_gc) 10399744 cells work, 37 bytes other


In Tcl:
  % time {fib_loop 20 1000} 1
  5588559 microseconds per iteration
  x 100 = 558855900


C : Java : Scheme : Tcl
		
1 :  12  :   195  : 2328566
      1  :    16  :   75726
	       1  :   11926









