I wrote the following programs to compare the speed of python with c/fortran. To get the time used by the programs I used the \"time\" command. All the programs compute the sq
for calculations i might try haskell or ml...
try this code in ML:
fun trip(x,y,z) = if y=z then 0 else trip(((Math.sqrt((1.0*1.0)+(2.0*2.0)+(3.0*3.0)))*1.0),(y+1),z); trip(1.0,1,300000000);