APL 可以作为 DSL 在 Scala 中实现吗?

发布于 2024-12-10 03:51:58 字数 209 浏览 0 评论 0原文

有一种古老的计算机语言,称为 APL。这可以在 Scala 中作为 DSL 实现吗?

http://en.wikipedia.org/wiki/APL_%28programming_language%29

There is a old computer language called APL. Could this be implemented in Scala as a DSL?

http://en.wikipedia.org/wiki/APL_%28programming_language%29

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

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

发布评论

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

评论(2

删除→记忆 2024-12-17 03:51:58

有人可能会给出比这更好的答案,但这是我最初的想法:

  1. Scala DSL 理论上应该能够实现任何编程语言,因为它可以构建代表 理论上,
  2. 出于多种原因,Scala DSL 无法完全复制 APL 语法,其中之一就是

    '单引号'

可以在 APL 中表示字符串,但在 Scala 中则不能。另外(来自 wikipedia 页面

×/2 3 4

也不是有效的 Scala。

我不知道你能接近多远,但......

Someone could probably give a better answer than this, but this is my initial thought:

  1. A Scala DSL should in theory be able to implement any programming language because it could build up an arbitrary structure representing the syntax, and then evaluate that.

  2. A Scala DSL could not exactly replicate APL syntax for many reasons, one of which is that

    'single quotes'

can denote a string in APL, but not in Scala. Also (from the wikipedia page)

×/2 3 4

wouldn't be valid Scala.

I don't know how close you could get, though...

海的爱人是光 2024-12-17 03:51:58

Javascript 实现位于:https://github.com/ngn/apl

A Javascript implementation exists here: https://github.com/ngn/apl

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