therubyrhino可以让你在Ruby程序中嵌入Mozilla的Rhino引擎。
示例代码:
Rhino::Context.open do |context| context["say"] = lambda {|word, times| word * times} context.eval("say("Hello", 3)") #=> HelloHelloHelloendtherubyrhino可以让你在Ruby程序中嵌入Mozilla的Rhino引擎。
示例代码:
Rhino::Context.open do |context| context["say"] = lambda {|word, times| word * times} context.eval("say("Hello", 3)") #=> HelloHelloHelloend
评论