Skip to content

Instantly share code, notes, and snippets.

View erinql's full-sized avatar

Erin Quick-Laughlin erinql

View GitHub Profile
@ikenna
ikenna / stopwatch.rb
Last active April 21, 2021 15:01
Simple Ruby stopwatch
class Stopwatch
def initialize()
@start = Time.now
end
def elapsed_time
now = Time.now
elapsed = now - @start
puts 'Started: ' + @start.to_s