Time a function: Difference between revisions

Content added Content deleted
No edit summary
Line 1,731:
some_procedure()
printf(1,"%3.2fs.\n",time()-t0)</lang>
 
=={{header|Phixmonti}}==
<lang Phixmonti>def count
for drop endfor
enddef
 
1000000 count
msec dup var t0 print " seconds" print nl
 
10000000 count
msec t0 - print " seconds" print</lang>
 
=={{header|PicoLisp}}==