JavaScript 到 Ruby 翻译框架

发布于 2024-10-15 16:43:59 字数 51 浏览 6 评论 0原文

有人知道这样的框架吗?最好是一个开源项目,但首先,任何东西都可以。谷歌搜索结果毫无结果。

Anyone know of such a framework? Preferably an open-source project, but first, anything at all. A google search proved fruitless.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风吹短裙飘 2024-10-22 16:43:59

Tenderlove 的工作原理如下: https:// /tenderlovemaking.com/2007/04/15/converting-javascript-to-ruby-with-rkelly.html

但最后一个版本是 2009 年在 ruby​​forge 上发布的,也许它已经死了

Tenderlove works on something like that: https://tenderlovemaking.com/2007/04/15/converting-javascript-to-ruby-with-rkelly.html

But the last version was in the 2009 on the rubyforge and maybe it's dead

妄断弥空 2024-10-22 16:43:59

不幸的是,另一个答案中的链接已损坏,但我已经写了 另一个翻译器,用于将一小部分 JavaScript 转换为 Ruby。

这是 JavaScript 中的函数:

function add(a,b){
    return a+b;
}

这​​是翻译器在 Ruby 中的输出:

def add(a,b) 
    return a+b
end

Unfortunately the link in the other answer is broken, but I have written another translator to convert a small subset of JavaScript into Ruby.

This a function in JavaScript:

function add(a,b){
    return a+b;
}

and this is the translator's output in Ruby:

def add(a,b) 
    return a+b
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文