用 python 编写脚本语言

发布于 2024-11-03 06:19:01 字数 1435 浏览 1 评论 0原文

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

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

发布评论

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

评论(4

ㄟ。诗瑗 2024-11-10 06:19:01

我想第一步是选择一种语言(或者至少是语言的风格)。一种容易上手的风格是 Forth 的风格,其中源代码中的每个“单词”都以完全相同的方式处理。这使得词法分析和解析几乎变得微不足道。

另一种可以开始使用的小语言是 Scheme。解析有点复杂,因为它涉及递归,但它仍然很容易处理。您可以在网络上找到各种 Python 方案的示例,这种方法已经被做过很多次了。

I suppose the first step is to choose a language (or at least style of language). An easy one to start with is the style of Forth, where each "word" in the source code is handled in exactly the same way. This makes lexical analysis and parsing nearly trivial.

Another small language to start with is Scheme. The parsing is a bit more involved because it involves recursion, but it's still tractable. You can find various examples of Scheme-in-Python around the web, it's been done lots of times.

千寻… 2024-11-10 06:19:01

编写脚本语言可能会超出“学习一点”的范围。我觉得太多了。但如果你足够认真,你可能想从使用 raccPLY,分别用于 ruby​​ 和 python 的 YACC 绑定。

Writing a scripting language will probably exceed 'learn[ing] a bit'. I think it's too much. But if you are serious enough, you might want to start by playing around with racc or PLY, YACC bindings for ruby and python, respectively.

无需解释 2024-11-10 06:19:01

如果只是作为学习练习,我建议阅读 如何在Python中制作as*** JavaScript解释器。 JavaScript 可以是非常基础的,它可以在非常初级的水平上解释事物。

If it is just as a learning exercise, I would recommend reading through this tutorial on how to make a s*** javascript interpreter in python. Javascript can be very basic, and it explains things at a very beginner level.

画出一个关于你的语言如何工作的有限状态自动机,编写一个语法分析器,画一些图表。继续破解!

draw out a finite state automata of how your language is going to work, write a syntax analyzer, draw some diagrams. Hack on!

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