just in case I didn't blog it

| | Comments (0)
require 'rubygems'
require 'ruby2ruby'

p = proc { |x| x + 1 }
puts p.to_ruby
# => proc { |x|
#      (x + 1)
#    }

Leave a comment