I need an array of blocks, where each block can take an argument:
array = [
block do |x| puts x end,
block do |x| puts x.to_s+" - " end
]
and make a request in the form of:
array[0] << 34
I had an idea to convert large numbers into words. I was wondering about the limits of blocks. There may be another way of doing it, but I am curious if this is possible.