Timing things in a pretty way
- instantiate
- mark events at points in time
- generate a report
stopwatch = Stopwatch.new('StopWatch Test')
stopwatch.mark 'Hello, World'
stopwatch.mark 'Gonna sleep for 1 second'
sleep 1
stopwatch.mark 'Gonna sleep for 2 seconds'
sleep 2
stopwatch.mark 'Phew! Done.'
stopwatch.report