Time a function: Difference between revisions

Content deleted Content added
Toucan (talk | contribs)
adding gap
→‎{{header|Euphoria}}: Euphoria example added
Line 287:
println(`Counting to $count takes ${(finish-start)//1000000}ms`)
}</lang>
 
=={{header|Euphoria}}==
<lang euphoria>atom t
t = time()
some_procedure()
t = time - t
printf(1,"Elapsed %f seconds.\n",t)</lang>
 
=={{header|Factor}}==