Rate counter: Difference between revisions

Content added Content deleted
(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
(added Arturo)
Line 215: Line 215:
0.000001 seconds is the precision of System clock.
0.000001 seconds is the precision of System clock.
</pre>
</pre>

=={{header|Arturo}}==
<syntaxhighlight lang="arturo">cube: function [z]->
z * z * z

loop 1..10 'x [
benchmark ->
loop 1..400 'o -> cube 5
]</syntaxhighlight>

{{out}}

<pre>[benchmark] time: 0.231ms
[benchmark] time: 0.231ms
[benchmark] time: 0.213ms
[benchmark] time: 0.184ms
[benchmark] time: 0.141ms
[benchmark] time: 0.175ms
[benchmark] time: 0.169ms
[benchmark] time: 0.254ms
[benchmark] time: 0.174ms
[benchmark] time: 0.174ms</pre>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==