Time a function: Difference between revisions

Content deleted Content added
→‎{{header|Euphoria}}: Euphoria example added
m →‎{{header|Euphoria}}: oops brackets missing
Line 292:
t = time()
some_procedure()
t = time() - t
printf(1,"Elapsed %f seconds.\n",t)</lang>