10 July 2014
Ruby的即時関数
JQuery = Class.new {
define_singleton_method(:click) { |name, &blk|
blk.(name);
}
}
alias :alert :puts
method(def _ _
_.click("Charlie", &->name{
alert "Hello, " + name + "!!"
});
end).(JQuery)
# >> Hello, Charlie!!
意味不明。
blog comments powered by Disqus