8 lines
107 B
Ruby
8 lines
107 B
Ruby
![]() |
class Exception
|
||
|
attr_accessor :continuation
|
||
|
|
||
|
def restart(&block)
|
||
|
continuation.call block
|
||
|
end
|
||
|
end
|