1 2 3 4 5 6 7 8
class AnonymousCommand def initialize(block) @block = block end def run @block.call() end end