In Ruby, to construct a method\'s name and send it to an object, one can do:
class Foo
def foo
\"FOO\"
end
end
Foo.new.public_send(:foo) # => \"FOO\
There is no equivalent in crystal. Crystal is a statically typed and statically compiled language. We have no send or eval functions.
Depending on the problem you had which made you reach for send in the first place, you might be able to use macros. There is not one replacement for send in crystal, there is simply a bunch of tools to enable some dynamic behaviour to be modelled statically.