有没有可以将 C 代码翻译成 Smalltalk 的工具?
朋友们,我有一段代码,可以执行简单的加、减、乘、除和带括号的公式。
是否有某种转换工具可以将代码从 C 转换为 Smalltalk?
或者还有其他相对简单的方法来实现这一目标?
提前致谢。
friends, I have a piece of code which can perform simple add, subtraction, multiplication, division, and formula with brackets.
Is there some kind of conversion tool for translating code from C to Smalltalk?
Or any other relatively easy way to achieve this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PetitParser 编写应该很简单
This should be trivial to write with PetitParser
有一个 SWIG for Smalltalk 的实现。 (SWIG 是一个软件开发工具,它将用 C 和 C++ 编写的程序与各种高级编程语言连接起来)。
There is an implementation of SWIG for Smalltalk. (SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages).