ruby--ruby/prelude.rb

13 lines
100 B
Ruby

# Mutex
class Mutex
def synchronize
self.lock
yield
ensure
self.unlock
end
end