hi,
is it possible to pass functions as arguments to other funtions????
(something like functions pointers in C++)

the following code does not work

------------
#!/usr/local/bin/ruby -w


def func(a, b)
	a
	b
end

def one
	print "in one"
end

def two
	print "in two"
end

func(one, two)
--------------

it produces the following error:

./func.rb:5: warning: useless use of a variable in void context


does anybody know  a solution

markus