I want to take the current time and store it in hash and then when I check it again compare the current time to the stored time.
t1 =Time.now
time = "#{t1.hour}" + "#{t1.min}" + "#{t1.sec}"
oldtime = Hash.new(time)
puts "Old time is #{oldtime}"
puts "Current is #{time}"
Thanks for your help!