Guest User

Untitled

a guest
Apr 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. begin
  2. time_start=Time.now.to_i
  3. puts "hello1"
  4. sleep 10
  5. raise "Timeout" if (Time.now.to_i-time_start) > 20
  6. puts "hello2"
  7. sleep 20
  8. raise "Timeout" if (Time.now.to_i-time_start) > 20
  9. rescue
  10. puts "timeout"
  11. end
Add Comment
Please, Sign In to add comment