Ruby/Method/send
Материал из Wiki.crossplatform.ru
Версия от 17:10, 26 мая 2010; (Обсуждение)
Built-In Reflection
my_string = "times" 3.send(my_string) { print "Hello "}
Calling Methods Dynamically
"this is a test".send(:length) # 13 "this is a sub".send("sub", /iles/, ".")