Examples
// Simple usage
'example' CHRONOSTART
40 2 + DROP
84 2 / DROP
'example' CHRONOEND
CHRONOSTATS 'example' GET
// Safe usage of CHRONOEND with a TRY
'example' CHRONOSTART
<%
40 2 + DROP
84 2 / DROP
RETURN
'This won%27t be executed.'
%>
<% RETHROW %>
<% 'example' CHRONOEND %>
TRY
CHRONOSTATS 'example' GET
// Nested calls
'example' CHRONOSTART
2 2 + DROP
'example' CHRONOSTART // Stopwatch already started but also increment call count
40 2 + DROP
84 2 / DROP
'example' CHRONOEND // Does not stop the example stopwatch
'example' CHRONOEND // Stops the example stopwatch
CHRONOSTATS 'example' GET