i was just playing around with some ideas and came across something i could 
not do although it seems to me that it wouldn't be unreasonable to want to do 
so:

	def a_block_like_method(i)
		puts i
	end

	arr = [1, 2, 3]
	arr.each do a_block_like_method(i)

i also tried

	def pass_a_block
		{ |i| puts i }
	end

	arr = [1, 2, 3]
	arr.each do pass_a_block

and i tried a few other variations with no success. is there a way to pass a 
block or use a method as a block?

-- 
tom sawyer, aka transami
transami / transami.net